We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56032ea commit 1d3bb85Copy full SHA for 1d3bb85
Makefile
@@ -1,7 +1,7 @@
1
.PHONY: list up upd build stop down restart make-migrations migrate collectstatic shell logs create-super-user \
2
docker-stop-all create-schema test ruff-check ruff-fix ruff-format load-fixtures pre-commit-install \
3
dev-import-documents dev-quick-install lighthouse dev_update_vector_search docker-shell check make-messages \
4
- compile-messages
+ compile-messages fmt lint
5
6
list:
7
@echo "Available commands:"
@@ -80,9 +80,13 @@ test:
80
ruff-check:
81
@docker compose run --rm web ruff check .
82
83
+lint: ruff-check
84
+
85
ruff-format:
86
@docker compose run --rm web ruff format .
87
88
+fmt: ruff-format
89
90
ruff-fix:
91
@docker compose run --rm web ruff check --fix .
92
0 commit comments