From 5bc5f29281aeead2e10090fea3c1cc71d86bcb22 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sat, 25 Apr 2026 14:53:17 +0800 Subject: [PATCH] chore: ignore .worktrees in eslint config --- eslint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 05e726d..c46e05a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -12,6 +12,8 @@ const eslintConfig = defineConfig([ "out/**", "build/**", "next-env.d.ts", + // Worktree build artifacts + ".worktrees/**", ]), ]);