From 2d1c07cf74e489b2ddbdc243f01157d154cc745e Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 14 Sep 2026 12:18:35 +0200 Subject: [PATCH] =?UTF-8?q?Fix:=20Agent-Worktrees=20(.claude/)=20von=20ESL?= =?UTF-8?q?int=20und=20tsc=20ausschlie=C3=9Fen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Die parallelen Lane-Worktrees liegen unter .claude/worktrees im Repo; ESLint und tsc erfassten deren .next-Artefakte und brachen das Gate ab. Gate nach Merge lane/benachrichtigungen: tsc, lint, build, 24/24 Tests grĂ¼n. Co-Authored-By: Claude Opus 5 --- eslint.config.mjs | 2 ++ tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 05e726d..70d37a0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -12,6 +12,8 @@ const eslintConfig = defineConfig([ "out/**", "build/**", "next-env.d.ts", + // Agent worktrees (parallel lanes) live inside the repo directory. + ".claude/**", ]), ]); diff --git a/tsconfig.json b/tsconfig.json index cf9c65d..0a4c9a9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,5 +30,5 @@ ".next/dev/types/**/*.ts", "**/*.mts" ], - "exclude": ["node_modules"] + "exclude": ["node_modules", ".claude"] }