🔧 chore(Makefile): exclude .venv folder from mypy linting to improve performance and avoid unnecessary errors

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-24 21:20:11 -03:00
commit 32de3e1f0a

View file

@ -27,7 +27,8 @@ format:
cd src/frontend && npm run format
lint:
poetry run mypy .
# skip .venv folder
poetry run mypy --exclude .venv .
poetry run black . --check
poetry run ruff . --fix