Files
homeassistant-core/script/check_format
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
144 B
Bash
Raw Normal View History

2019-07-30 16:59:12 -07:00
#!/bin/sh
# Format code with ruff-format.
cd "$(dirname "$0")/.."
ruff \
format \
2019-07-30 16:59:12 -07:00
--check \
--quiet \
2019-08-01 18:30:49 +03:00
homeassistant tests script *.py