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"] }