🔧 chore(Makefile): exclude alembic directory from ruff linting to avoid unnecessary errors

🔧 chore(Makefile): add exclusion of alembic directory from ruff linting to improve linting process
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-10-19 10:59:44 -03:00
commit 218788d5df

View file

@ -31,7 +31,7 @@ endif
format:
poetry run black .
poetry run ruff . --fix
poetry run ruff . --fix --exclude src/backend/langflow/alembic
cd src/frontend && npm run format
lint: