Makefile: use ruff check

This commit is contained in:
Aarni Koskela 2024-08-06 15:43:49 +03:00
parent f2469cb1bf
commit 4672bd3d50

View File

@ -117,7 +117,7 @@ lint-fix:
python3 -c "import black" > /dev/null 2>&1 || python3 -m pip install black
python3 -m black .
python3 -c "import ruff" > /dev/null 2>&1 || python3 -m pip install ruff
python3 -m ruff --fix .
python3 -m ruff check --fix .
.PHONY: mypy
mypy: