From 4760ea7cd04991bb621421b4919dbfa66bc50c70 Mon Sep 17 00:00:00 2001 From: Francisco Geiman Thiesen Date: Fri, 9 Jan 2026 10:00:43 -0800 Subject: [PATCH] Add ignore patterns for Node.js, Rust, and generated files Add entries for node_modules, package-lock.json, Rust target directories, local ablation artifacts, and generated documentation files. --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 3709099fb..2dcb57163 100644 --- a/.gitignore +++ b/.gitignore @@ -107,3 +107,17 @@ objs # clangd .cache + +# Node.js +node_modules/ +package-lock.json + +# Rust build artifacts +**/target/ + +# Local ablation/benchmark artifacts +ablation/ + +# Generated documentation/review files +CODE_REVIEW.md +SUMMARY.md