mirror of
https://github.com/home-assistant/core.git
synced 2025-04-19 23:07:53 +00:00
11 lines
144 B
Bash
Executable File
11 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
# Format code with ruff-format.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
ruff \
|
|
format \
|
|
--check \
|
|
--quiet \
|
|
homeassistant tests script *.py
|