From 3442a92bf966adf4fb7a916f9c5d57101765c7eb Mon Sep 17 00:00:00 2001 From: joereyna Date: Sat, 28 Mar 2026 14:11:59 -0700 Subject: [PATCH] fix(lint): wire lint-ruff-FULL-dev into lint-dev to catch Ruff violations on changed files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b6b674ff3b1..e9d3868588e 100644 --- a/Makefile +++ b/Makefile @@ -126,7 +126,7 @@ check-import-safety: install-dev lint: format-check lint-ruff lint-mypy check-circular-imports check-import-safety # Faster linting for local development (only checks changed code) -lint-dev: lint-format-changed lint-mypy check-circular-imports check-import-safety +lint-dev: lint-format-changed lint-ruff-FULL-dev lint-mypy check-circular-imports check-import-safety # Testing targets test: install-test-deps