← back to YOLO Progress Viewer
Clean up .gitignore and broaden snapshot-file patterns
45f5b1979ec1e5fbac4ab19a56a1b8e5ec030b51 · 2026-05-19 21:42:12 -0700 · Steve Abrams
Line 1 had literal '\n' escape sequences that weren't interpreted,
so node_modules/ et al on that line were never actually matched.
The bottom standing-rule block already covers those correctly;
removed the dead line and added *.bak.* / *.pre-* coverage.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Files touched
Diff
commit 45f5b1979ec1e5fbac4ab19a56a1b8e5ec030b51
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Tue May 19 21:42:12 2026 -0700
Clean up .gitignore and broaden snapshot-file patterns
Line 1 had literal '\n' escape sequences that weren't interpreted,
so node_modules/ et al on that line were never actually matched.
The bottom standing-rule block already covers those correctly;
removed the dead line and added *.bak.* / *.pre-* coverage.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
.gitignore | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/.gitignore b/.gitignore
index 4364691..7e5b1f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,15 +1,16 @@
-node_modules/\n.next/\ndist/\n.env\n*.log
+node_modules/
+.env
+.env.*
.env.local
.env.*.local
-.env.*
+*.log
tmp/
.DS_Store
-build/
-*.bak
-
-# Standing-rule additions (2026-05-07)
-node_modules/
-.env*
-*.log
dist/
+build/
.next/
+
+# Snapshot / backup artifacts — never commit
+*.bak
+*.bak.*
+*.pre-*
← b3aa255 Add noopener,noreferrer to external window.open dashboard li
·
back to YOLO Progress Viewer
·
(newest)