From 0be7f7ead8e63df798a52db9fda89fbed20fec04 Mon Sep 17 00:00:00 2001 From: owk-owk130 Date: Thu, 3 Sep 2026 08:41:45 +0900 Subject: [PATCH] =?UTF-8?q?chore(biome):=20.claude=20=E3=81=AE=E9=99=A4?= =?UTF-8?q?=E5=A4=96=E3=82=92=E3=83=AA=E3=83=9D=E3=82=B8=E3=83=88=E3=83=AA?= =?UTF-8?q?=E7=9B=B4=E4=B8=8B=E3=81=A0=E3=81=91=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `!**/.claude` は worktree の絶対パスに含まれる `.claude/worktrees/` にも マッチし、`.claude/worktrees/` 配下の worktree で `biome check .` が 0 ファイルになっていた。ファイルを明示する post-edit hook は動くため 気付きにくく、`pnpm lint` だけが worktree 内で通らない状態だった。 config ルート相対の `!.claude` に変えて、リポジトリ直下の `.claude/` だけを除外する。 Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01AYsHuZj1hWRdK1hieBG5YU --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index d6cdd3af..db60932b 100644 --- a/biome.json +++ b/biome.json @@ -14,7 +14,7 @@ "!**/.astro", "!**/.mastra", "!**/.wrangler", - "!**/.claude", + "!.claude", "!**/.brain", "!**/.design-sync", "!**/.ds-sync",