From c8a7160ef22410a86a6ec095a4f8a23e935f1a7f Mon Sep 17 00:00:00 2001 From: ginnoir Date: Wed, 8 Jul 2026 20:46:02 -0500 Subject: [PATCH] chore: ignore local worktrees in checks --- .dockerignore | 1 + eslint.config.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index a9f70fa..0011499 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,5 +1,6 @@ node_modules .next +.worktrees .git deploy docs diff --git a/eslint.config.mjs b/eslint.config.mjs index d24b82e..8856990 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -8,6 +8,7 @@ export default tseslint.config( ignores: [ "node_modules/**", ".next/**", + ".worktrees/**", ".claude/**", ".design-tmp/**", "dist/**",