🔧 chore(Makefile): add 'make install_backend' command to the 'lint' target to ensure backend dependencies are installed before running checks

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-25 16:03:16 -03:00
commit 976bbe509d

View file

@ -28,6 +28,7 @@ format:
cd src/frontend && npm run format
lint:
make install_backend
poetry run mypy src/backend/langflow
poetry run black . --check
poetry run ruff . --fix