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