fix(makefile): correct uv project path for lint target (#25818)

This commit is contained in:
-LAN- 2025-09-18 20:36:26 +08:00 committed by GitHub
parent 4ba1292455
commit aa69d90489
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ check:
lint:
@echo "🔧 Running ruff format and check with fixes..."
@uv run --directory api --dev sh -c 'ruff format ./api && ruff check --fix ./api'
@uv run --project api --dev sh -c 'ruff format ./api && ruff check --fix ./api'
@echo "✅ Linting complete"
type-check: