🔧 chore(Makefile): exclude .venv directory from mypy type checking to improve performance and avoid unnecessary errors

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-28 18:05:29 -03:00
commit 23651e3a45

View file

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