Skip to content

Commit 679e487

Browse files
committed
chore: fix stale validator references in docs
- app/validate.py docstring: `python -m scripts.validate` -> `python -m app.validate` (no `scripts/` module exists; validator lives at app/validate.py, matching README + CI) - .gitignore: drop stale note about non-existent `data/_staging/` directory Refs #1
1 parent 45430f4 commit 679e487

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ env/
2828
# Local tooling/editor config (kept out of the public repo)
2929
.claude/
3030

31-
# Note: data/_staging/ (raw collected candidate pool) is intentionally tracked —
32-
# comprehensive data collection is a purpose of this repo.
33-
3431
# Build-only: regenerated on every Pages deploy (site/scripts/build-*.mjs)
3532
site/public/v1/history.json
3633
site/public/v1/verification.json

app/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Validate seed JSON against the schema and conventions (§9.3, §15.3).
22
33
Checks: required fields, slug convention (§14.1), value ranges/units (§14.3),
4-
and foreign-key integrity by slug. Run with ``python -m scripts.validate``;
4+
and foreign-key integrity by slug. Run with ``python -m app.validate``;
55
exits non-zero on the first failure set (used by CI ``validate-data.yml``).
66
"""
77

0 commit comments

Comments
 (0)