From 08031fb6776419201f8ffbdccbff0a285a91d1c7 Mon Sep 17 00:00:00 2001 From: Ira Abramov Date: Tue, 21 Oct 2025 11:25:34 +0300 Subject: [PATCH] chore: explicitly ignore CLAUDE.md in gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .* pattern already covers .claude/ directory, but explicitly adding CLAUDE.md to ensure Claude Code configuration files are not committed. Also re-allowing .github and .vscode directories that should be tracked. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index faf297f..6ce517f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ *.app .* +!.github +!.vscode +CLAUDE.md