From ee950fba5627727c6fbe11ffcc46352b3fe82969 Mon Sep 17 00:00:00 2001 From: joereyna Date: Thu, 16 Apr 2026 21:25:39 -0700 Subject: [PATCH] fix comment: lint-dev checks changed files in full, not just changed lines --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e9d3868588e..c2ed9a686df 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ check-import-safety: install-dev # Combined linting (matches test-linting.yml workflow) lint: format-check lint-ruff lint-mypy check-circular-imports check-import-safety -# Faster linting for local development (only checks changed code) +# Faster linting for local development (checks changed files in full + changed-line formatting + mypy) lint-dev: lint-format-changed lint-ruff-FULL-dev lint-mypy check-circular-imports check-import-safety # Testing targets