From fffa69af778a7983d251339b4bc99e4b800b951a Mon Sep 17 00:00:00 2001 From: "r@l" Date: Tue, 24 Mar 2026 11:30:43 +0100 Subject: [PATCH] Add missing patterns to .gitignore The project uses Node.js (Truffle/Ganache), Python 3, and Go but the .gitignore only covered Go build artifacts. Add patterns for node_modules, __pycache__, generated fuzz_config directories, and environment files to prevent accidental commits of build artifacts. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.gitignore b/.gitignore index 5b5abc0..ee7b8e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,23 @@ +# Go build artifacts build/bin build/gen vendor + +# Truffle build artifacts benchmarks/*/build + +# Node.js +node_modules/ + +# Python +__pycache__/ +*.pyc + +# Profiling *.prof +# Generated fuzzing config (created by extract.sh) +**/fuzz_config/ + +# Environment files +.env