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