From aa69d90489316b2d39c7b92a5917d988f2b4568d Mon Sep 17 00:00:00 2001 From: -LAN- Date: Thu, 18 Sep 2025 20:36:26 +0800 Subject: [PATCH] fix(makefile): correct uv project path for lint target (#25818) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec7df3e03d..88fa25e222 100644 --- a/Makefile +++ b/Makefile @@ -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: