Update Makefile with formatting and linting

changes
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-11-13 18:33:28 -03:00
commit 1e32526880

View file

@ -30,12 +30,13 @@ else
endif
format:
poetry run ruff . --fix --exclude src/backend/langflow/alembic --line-length 120
poetry run ruff . --fix
poetry run ruff format .
cd src/frontend && npm run format
lint:
poetry run mypy src/backend/langflow
poetry run ruff . --fix --line-length 120
poetry run ruff . --fix
install_frontend:
cd src/frontend && npm install