From 2e42caee0eccd5977420b3360811080136ed7396 Mon Sep 17 00:00:00 2001 From: mleku Date: Mon, 1 Dec 2025 14:44:31 +0000 Subject: [PATCH] Fix .idea directory not being ignored due to allowlist pattern MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Move .idea/ ignore rule after the !*/ allowlist directive - Add **/.idea/ pattern to catch nested occurrences - The !*/ rule was re-including directories, overriding the earlier ignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 0acbb6f..0824b54 100644 --- a/.gitignore +++ b/.gitignore @@ -94,6 +94,10 @@ cmd/benchmark/data !libsecp256k1.so # ...even if they are in subdirectories !*/ + +# Re-ignore IDE directories (must come after !*/) +.idea/ +**/.idea/ /blocklist.json /gui/gui/main.wasm /gui/gui/index.html