From ece3b0d771dd2b94e063aa8ca4966fc1b18b9161 Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Wed, 25 Feb 2026 15:48:47 -0500 Subject: [PATCH] fix: ignore .claude/ at any depth, not just repo root The previous pattern `/.claude/` only matched at the repository root. Subdirectory `.claude/` folders (e.g., EmailSearch/.claude/) were not ignored, risking accidental commits of local Claude Code settings. Co-Authored-By: Claude Opus 4.6 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f97fc20..2da7033 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,4 @@ _ReSharper*/ .idea/ #Nuget packages folder packages/ -/.claude/ +.claude/