We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7928397 commit 2952b87Copy full SHA for 2952b87
1 file changed
Makefile
@@ -18,10 +18,11 @@ run: ## Start server via start.sh
18
lint: ## Run ruff linter
19
uv run ruff check slm_server/
20
21
-format: ## Run ruff formatter
+format: ## Run ruff linter (--fix) and formatter
22
+ uv run ruff check slm_server/ --fix
23
uv run ruff format slm_server/
24
-check: lint ## Run linter + formatter check
25
+check: lint ## Run linter + formatter check (CI)
26
uv run ruff format --check slm_server/
27
28
smoke: ## Smoke-test the running server APIs with curl
0 commit comments