core/script/check_format

11 lines
144 B
Plaintext
Raw Normal View History

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