diff --git a/Makefile b/Makefile index 9b1ca6a1..4a7c6dd8 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,11 @@ make sync: uv sync --frozen check-format: - black --check ./ - isort --check-only ./ --profile black - + black $(shell git rev-parse --show-toplevel) --check + pylint $(shell git ls-files '*.py') + flake8 $(shell git rev-parse --show-toplevel) + isort --check-only $(shell git rev-parse --show-toplevel)/ --profile black + format: black ./ isort ./ --profile black