From 59a64141eeaf0d20a42c40dc05908fca74c88194 Mon Sep 17 00:00:00 2001 From: yusufipk Date: Tue, 1 Sep 2026 15:09:53 +0300 Subject: [PATCH] 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. --- eslint.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index a5273d0..dd3b20b 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -21,6 +21,9 @@ const eslintConfig = defineConfig([ 'test-results/**', 'reports/**', '.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, {