Fix: Agent-Worktrees (.claude/) von ESLint und tsc ausschließen

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 <noreply@anthropic.com>
This commit is contained in:
2026-09-14 12:18:35 +02:00
co-authored by Claude Opus 5
parent 2fb2978c71
commit 2d1c07cf74
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -12,6 +12,8 @@ const eslintConfig = defineConfig([
"out/**", "out/**",
"build/**", "build/**",
"next-env.d.ts", "next-env.d.ts",
// Agent worktrees (parallel lanes) live inside the repo directory.
".claude/**",
]), ]),
]); ]);
+1 -1
View File
@@ -30,5 +30,5 @@
".next/dev/types/**/*.ts", ".next/dev/types/**/*.ts",
"**/*.mts" "**/*.mts"
], ],
"exclude": ["node_modules"] "exclude": ["node_modules", ".claude"]
} }