From 80d12cb2f1a75252453cf2378c631073ec246579 Mon Sep 17 00:00:00 2001 From: yushen Date: Tue, 20 Jan 2026 17:19:52 +0800 Subject: [PATCH] chore(ci): enforce zero ESLint warnings All pre-existing ESLint warnings have been fixed. Update CI to reject any new warnings by setting --max-warnings 0. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5ae40da2d..afd4dcee56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,8 +44,7 @@ jobs: run: pnpm typecheck - name: ESLint - # TODO: Reduce --max-warnings to 0 as pre-existing issues are fixed - run: pnpm lint --max-warnings 250 + run: pnpm lint --max-warnings 0 - name: Prettier check run: pnpm format:check