From 7696a37763e1697395b3326e2a22b0e1a4ae535d Mon Sep 17 00:00:00 2001 From: lucaronin Date: Sun, 22 Feb 2026 14:07:10 +0100 Subject: [PATCH] ci: remove continue-on-error from lint step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All ESLint errors have been fixed — lint now exits 0. The lint step will now fail the CI build if any errors are introduced. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22c1d0f8..a75ef759 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,9 +84,6 @@ jobs: # ── 5. Lint & format ────────────────────────────────────────────────── - name: Lint frontend run: pnpm lint - continue-on-error: true - # NOTE: codebase has ~60 pre-existing lint errors (no-explicit-any, react hooks, etc.) - # tracked in Todoist — fix before removing continue-on-error - name: Clippy (Rust) run: cargo clippy --manifest-path=src-tauri/Cargo.toml -- -D warnings