Skip to content

Commit 1ab077e

Browse files
committed
chore: exclude .claude from eslint and prettier
The agent tooling checks out full repo copies (including tsconfigs) under .claude/worktrees/. Linting them made typescript-eslint report "multiple candidate TSConfigRootDirs" and fail the whole run. AI-Assisted-By: Claude Code
1 parent c76b113 commit 1ab077e

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,7 @@ vscode.proposed.d.ts
1515
.pytest_cache/
1616
robotcode/
1717

18+
# agent tooling checks out full repo copies here
19+
.claude/
20+
1821
*.md

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ export default [
77
ignores: [
88
"**/.venv/",
99
"**/node_modules/",
10+
// Agent tooling checks out full repo copies (incl. tsconfigs) under .claude/worktrees/;
11+
// linting them confuses typescript-eslint's root-dir resolution for the whole run.
12+
"**/.claude/",
1013
"**/dist/",
1114
"**/out/",
1215
"**/coverage/",

0 commit comments

Comments
 (0)