10 lines
144 B
Bash
Executable file
10 lines
144 B
Bash
Executable file
#!/bin/sh
|
|
# Format code with ruff-format.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
ruff \
|
|
format \
|
|
--check \
|
|
--quiet \
|
|
homeassistant tests script *.py
|