From 52373514929f45f8ad1d93da2bd94dac91ec6367 Mon Sep 17 00:00:00 2001 From: Luc Didry Date: Thu, 11 Apr 2024 09:07:17 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20=E2=80=94=20Add=20a=20ruff-forma?= =?UTF-8?q?t=20targe=20in=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c2d0f50..a8252d4 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,8 @@ test: venv ## Run the tests venv/bin/pytest ruff: venv venv/bin/ruff format --check . +ruff-format: venv + venv/bin/ruff format . djlint: venv ## Format the templates venv/bin/djlint --ignore=H030,H031,H006 --profile jinja --lint argos/server/templates/*html pylint: venv ## Runs pylint on the code