Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ const eslintConfig = defineConfig([
// repeats every finding once per sandbox and fails the run on code that
// is not ours to fix.
".stryker-tmp/**",
// Claude Code checks agent worktrees out here — full copies of the repo,
// ignored by git via .git/info/exclude. Same problem as .stryker-tmp:
// every finding repeats once per worktree, and the noise buries real ones.
// CI starts from a clean checkout, so this is invisible there and constant
// locally, which is the worst way round.
".claude/worktrees/**",
]),
]);

Expand Down