File size: 252 Bytes
b535ea0 c222ee6 b535ea0 c222ee6 b535ea0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
.PHONY: style format
style:
poetry run python -m black --line-length 119 .
poetry run python -m isort .
ruff check --fix .
quality:
poetry run python -m black --check --line-length 119 .
poetry run python -m isort --check-only .
ruff check .
|