From f774cc636179ce614f089cfd449046ce3eaacfc1 Mon Sep 17 00:00:00 2001 From: Gabriel Almeida Date: Sat, 27 May 2023 17:00:44 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(Makefile):=20update=20ruff?= =?UTF-8?q?=20command=20to=20fix=20all=20files=20in=20the=20directory=20Th?= =?UTF-8?q?e=20ruff=20command=20was=20updated=20to=20fix=20all=20files=20i?= =?UTF-8?q?n=20the=20directory=20instead=20of=20just=20the=20ones=20that?= =?UTF-8?q?=20have=20the=20I=20issue.=20This=20ensures=20that=20all=20file?= =?UTF-8?q?s=20are=20properly=20formatted.?= 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 fcb592426..e03967b23 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ tests: format: poetry run black . - poetry run ruff --select I --fix . + poetry run ruff . --fix cd src/frontend && npm run format lint: