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>
21 lines
555 B
JavaScript
21 lines
555 B
JavaScript
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
import nextTs from "eslint-config-next/typescript";
|
|
|
|
const eslintConfig = defineConfig([
|
|
...nextVitals,
|
|
...nextTs,
|
|
// Override default ignores of eslint-config-next.
|
|
globalIgnores([
|
|
// Default ignores of eslint-config-next:
|
|
".next/**",
|
|
"out/**",
|
|
"build/**",
|
|
"next-env.d.ts",
|
|
// Agent worktrees (parallel lanes) live inside the repo directory.
|
|
".claude/**",
|
|
]),
|
|
]);
|
|
|
|
export default eslintConfig;
|