chore(lint): ignore .claude worktree checkouts in eslint

A worktree parked under .claude/worktrees is a separate checkout; eslint
scanning it fails bun run check on files outside this tree.
This commit is contained in:
2026-09-01 15:09:53 +03:00
parent 4b3c3934dd
commit 59a64141ee
+3
View File
@@ -21,6 +21,9 @@ const eslintConfig = defineConfig([
'test-results/**', 'test-results/**',
'reports/**', 'reports/**',
'.stryker-tmp/**', '.stryker-tmp/**',
// Git worktrees checked out under .claude/worktrees are separate checkouts,
// not part of this tree; linting them fails the run on their files.
'.claude/**',
]), ]),
prettier, prettier,
{ {