Skip to content

Commit f46ecff

Browse files
chore: keep scratch files out of the repository root
Four files had been sitting in the root for two days: saved web pages and the one-off script that processed them. Untracked, so nothing was ever committed — but the root of an engine is the first place a newcomer reads, and anything there is taken for structure until proven otherwise. The patterns are anchored to the root on purpose. A crate that genuinely serves HTML must not have its assets silently ignored, so `/*.html` and not `*.html`. Claude-Session: https://claude.ai/code/session_01PzJTTrKcGrKtCZsGC3Z7S1
1 parent 0e2fc16 commit f46ecff

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.gitignore

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,17 @@ contexto/*
137137
# Local neural-embedder test models (never commit — ~470MB fp32 e5-small, fetched on demand)
138138
crates/ineru/test-models/
139139
# Local ONNX Runtime dylib for running the gated neural tests (set ORT_DYLIB_PATH to it)
140-
.tmp-ort/
140+
.tmp-ort/
141+
# Scratch files left in the repository root.
142+
#
143+
# Saved web pages and one-off scripts accumulate here during investigation and
144+
# then sit for days looking like they belong. They do not: the root of an
145+
# engine is the first place a newcomer reads, and anything there is taken for
146+
# structure. Keeping a saved copy of a page is also its own trap — the next
147+
# person checks the copy instead of the source it came from.
148+
#
149+
# Deliberately anchored to the root: a crate that genuinely serves HTML must
150+
# not have its assets silently ignored.
151+
/*.html
152+
/*.py
153+
/scratch/

0 commit comments

Comments
 (0)