🔧 chore(Makefile): update mypy command to exclude .venv folder and only check files in ./src/backend/langflow directory

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-21 10:01:37 -03:00
commit f6ea541477

View file

@ -28,7 +28,7 @@ format:
lint:
# skip .venv folder
poetry run mypy --exclude .venv .
poetry run mypy --exclude .venv ./src/backend/langflow
poetry run black . --check
poetry run ruff . --fix