From ac86962397b6a9b7f904b34c84aa700f7b73edf0 Mon Sep 17 00:00:00 2001 From: AndresL230 <190146319+AndresL230@users.noreply.github.com> Date: Thu, 30 Jul 2026 11:39:04 -0700 Subject: [PATCH] fix(ci): prune stale eslint suppressions unblocking the frontend lane Every CI run since the #471 merge fails at the lint step with exit 2: the agent-only rung ladder cutover removed three suppressed no-restricted-syntax occurrences from screens/Learn.tsx, and eslint exits 2 when suppressions in eslint-suppressions.json no longer match anything. Prune the stale entries (20 -> 17) via --prune-suppressions. Verified against origin/main: eslint exit 0, tsc exit 0, vitest 372/372. Co-Authored-By: Claude Fable 5 --- frontend/eslint-suppressions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/eslint-suppressions.json b/frontend/eslint-suppressions.json index 1fd11573..e3baccc0 100644 --- a/frontend/eslint-suppressions.json +++ b/frontend/eslint-suppressions.json @@ -124,7 +124,7 @@ "count": 2 }, "no-restricted-syntax": { - "count": 20 + "count": 17 } }, "src/components/screens/Library.tsx": {