🔧 chore(Makefile): update mypy command to only check files in src/backend/langflow directory to improve performance and reduce noise in the output

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-04 07:00:38 -03:00
commit 43864904ef

View file

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