From 7534c196e63a26484ee6bbc49e250aff3af576c1 Mon Sep 17 00:00:00 2001 From: Florian Wathling Date: Sat, 9 May 2026 17:54:02 +0200 Subject: [PATCH] Drop lint step from CI (ESLint v9 needs eslint.config.js) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Template doesn't ship with an eslint.config.js. ESLint v9 flat-config is required and there's no sensible default for an empty skeleton — User adds it after Use-Template + can re-add the lint step then. Type-check via tsc runs fine and stays in CI. --- .gitea/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8b42658..3220a68 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,6 +6,10 @@ on: pull_request: branches: [main] +# Template ships without an eslint.config.js (ESLint v9 flat-config), so the +# lint step is skipped here. Add it back in your downstream repo once you've +# committed your eslint.config.js — see README "Linting" section. + jobs: verify: runs-on: ubuntu-latest @@ -28,6 +32,3 @@ jobs: - name: Type-check run: npm run type-check - - - name: Lint - run: npm run lint