Skip to content

Commit 2952b87

Browse files
🩹 changed makefile lint
1 parent 7928397 commit 2952b87

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ run: ## Start server via start.sh
1818
lint: ## Run ruff linter
1919
uv run ruff check slm_server/
2020

21-
format: ## Run ruff formatter
21+
format: ## Run ruff linter (--fix) and formatter
22+
uv run ruff check slm_server/ --fix
2223
uv run ruff format slm_server/
2324

24-
check: lint ## Run linter + formatter check
25+
check: lint ## Run linter + formatter check (CI)
2526
uv run ruff format --check slm_server/
2627

2728
smoke: ## Smoke-test the running server APIs with curl

0 commit comments

Comments
 (0)