From 4cc3f6045b7cb49b2360f608bd4141cbd4695ca8 Mon Sep 17 00:00:00 2001 From: -LAN- Date: Fri, 19 Sep 2025 18:26:43 +0800 Subject: [PATCH] Run import-linter within make lint (#25933) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 88fa25e222..ea560c7157 100644 --- a/Makefile +++ b/Makefile @@ -61,8 +61,9 @@ check: @echo "✅ Code check complete" lint: - @echo "🔧 Running ruff format and check with fixes..." + @echo "🔧 Running ruff format, check with fixes, and import linter..." @uv run --project api --dev sh -c 'ruff format ./api && ruff check --fix ./api' + @uv run --directory api --dev lint-imports @echo "✅ Linting complete" type-check: