🔧 chore(Makefile): exclude .venv folder from mypy linting to improve performance and avoid unnecessary errors
This commit is contained in:
parent
9fb1a26277
commit
32de3e1f0a
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue