From 218788d5dfb83c59825bdccf215770d45b6ffe98 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 19 Oct 2023 10:59:44 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(Makefile):=20exclude=20ale?= =?UTF-8?q?mbic=20directory=20from=20ruff=20linting=20to=20avoid=20unneces?= =?UTF-8?q?sary=20errors=20=F0=9F=94=A7=20chore(Makefile):=20add=20exclusi?= =?UTF-8?q?on=20of=20alembic=20directory=20from=20ruff=20linting=20to=20im?= =?UTF-8?q?prove=20linting=20process?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 798dcfa00..af1765feb 100644 --- a/Makefile +++ b/Makefile @@ -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: