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
8 changes: 7 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ export default tseslint.config(
{
// dist/ is generated by `tsc`; examples/ is a standalone Next.js app with
// its own toolchain and is not part of this package's published `files`.
ignores: ['dist/**', 'examples/**', 'node_modules/**'],
//
// .claude/ holds per-session git worktrees — each a full copy of this repo,
// generated dist/ included. These patterns are anchored at the project root,
// so `dist/**` does NOT match `.claude/worktrees/x/dist/**`: without this
// entry a worktree is linted as source and reports errors in files that are
// not part of the checkout being tested.
ignores: ['dist/**', 'examples/**', 'node_modules/**', '.claude/**'],
},
js.configs.recommended,
...tseslint.configs.recommended,
Expand Down
Loading