From 932b1347e596bc8e34bae8bae1dab8fa1ff021f4 Mon Sep 17 00:00:00 2001 From: bronsen Date: Wed, 12 Mar 2025 18:16:29 +0100 Subject: [PATCH] [just] more linting recipes --- justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 7d89adb..71ad178 100644 --- a/justfile +++ b/justfile @@ -4,5 +4,10 @@ deps: sync: pip install -r requirements/dev.txt -lint: +lint: lint-ruff lint-django + +lint-ruff: ruff check . + +lint-django: + python -m django check