diff --git a/Makefile b/Makefile index a1531ac..b4aa8e6 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: list up upd build stop down restart make-migrations migrate collectstatic shell logs create-super-user \ docker-stop-all create-schema test ruff-check ruff-fix ruff-format load-fixtures pre-commit-install \ dev-import-documents dev-quick-install lighthouse dev_update_vector_search docker-shell check make-messages \ - compile-messages + compile-messages fmt lint list: @echo "Available commands:" @@ -80,9 +80,13 @@ test: ruff-check: @docker compose run --rm web ruff check . +lint: ruff-check + ruff-format: @docker compose run --rm web ruff format . +fmt: ruff-format + ruff-fix: @docker compose run --rm web ruff check --fix .