.museignore
toml
sha256:0e9549ec7b463911bc08b7d586dc320b1ac9b1f5c943ee7e3865dcc6cb0f6f83
chore(governance): sync handover+roadmap to 84db8c8 (drift:…
Human
8 hours ago
| 1 | # .museignore — snapshot exclusion rules for this repository. |
| 2 | |
| 3 | [global] |
| 4 | patterns = [ |
| 5 | ".DS_Store", |
| 6 | "Thumbs.db", |
| 7 | "*.tmp", |
| 8 | "*.swp", |
| 9 | "*.swo", |
| 10 | |
| 11 | # IDE / editor state — applies to every domain |
| 12 | ".vscode/", |
| 13 | ".idea/", |
| 14 | "*.iml", |
| 15 | ] |
| 16 | |
| 17 | [domain.code] |
| 18 | # Secrets (.env, *.key, *.pem, *.p12) are blocked by the Muse engine |
| 19 | # automatically — no need to list them here. |
| 20 | patterns = [ |
| 21 | # Clone-local governance freshness stamp (§GFG.5.4) |
| 22 | ".overseer/last_governance_sync", |
| 23 | |
| 24 | # ── Universal build / output directories ───────────────────────── |
| 25 | "dist/", |
| 26 | "build/", |
| 27 | "out/", |
| 28 | "tmp/", |
| 29 | |
| 30 | # ── Dependency trees ───────────────────────────────────────────── |
| 31 | "node_modules/", # JavaScript / Node |
| 32 | "vendor/", # Go, PHP (Composer) |
| 33 | |
| 34 | # ── Python ─────────────────────────────────────────────────────── |
| 35 | "__pycache__/", |
| 36 | "*.pyc", |
| 37 | "*.pyo", |
| 38 | ".venv/", |
| 39 | "venv/", |
| 40 | ".tox/", |
| 41 | "*.egg-info/", |
| 42 | |
| 43 | # Tauri build outputs (gitignored mirrors — rebuild via bundle-desktop-kit.sh) |
| 44 | "desktop/src-tauri/target/", |
| 45 | "desktop/src-tauri/resources/", |
| 46 | |
| 47 | # Local signing material (public keys under desktop/keys/ may be tracked) |
| 48 | "*.p12", |
| 49 | "*.pfx", |
| 50 | "apple-api-key.json", |
| 51 | "**/AuthKey_*.p8", |
| 52 | |
| 53 | # ── Rust ───────────────────────────────────────────────────────── |
| 54 | # "target/", |
| 55 | |
| 56 | # ── Java / Kotlin / Scala ──────────────────────────────────────── |
| 57 | # "*.class", |
| 58 | # "*.jar", |
| 59 | |
| 60 | # ── Ruby ───────────────────────────────────────────────────────── |
| 61 | # ".mpack/", |
| 62 | |
| 63 | ] |
| 64 | |
| 65 | # [force_track] |
| 66 | # Exact repo-relative paths to track even if they match a secrets pattern. |
| 67 | # Use for dev infrastructure (e.g. self-signed TLS certs) that must survive |
| 68 | # clean pulls. No glob expansion — each entry must be an exact file path. |
| 69 | # paths = [ |
| 70 | # "deploy/local-tls/localhost.key", |
| 71 | # "deploy/local-tls/localhost.crt", |
| 72 | # ] |
File History
1 commit
sha256:6abcf1fa82a7a621ccbc945f19acdba5bc0db54569599404a1452fb4a096a199
fix(ISR): default require_independent_second_reviewer to require
Human
minor
⚠
7 hours ago