-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (68 loc) · 1.8 KB
/
Copy path.gitignore
File metadata and controls
69 lines (68 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/target/
**/*.rs.bk
.claude/
.DS_Store
*.swp
*~
.idea/
.vscode/
*.pyc
__pycache__/
.venv/
.venv-acceptance/
*.egg-info/
**/node_modules/
**/dist/
**/fuzz/target/
**/fuzz/corpus/
**/fuzz/artifacts/
# Strategic / internal / pre-approval — NEVER commit without explicit approval
documents/
paper/
ANNOUNCE.md
BLOG-V1-LAUNCH.md
CALIBRATE_WORKFLOW.md
DEFENSE.md
DISTRIBUTION.md
KILL_CRITERIA_REPORT.md
PUBLISH_READINESS.md
RELEASE.md
ROADMAP.md
samkhya.md
SHOW-HN-DRAFT.md
SOCIAL-DRAFTS.md
MEDIUM-DRAFT.md
V1_RELEASE.md
QA_GATE_REPORT.md
ACCEPTANCE_REPORT.md
EVIDENCE.md
RESEARCH.md
PROOF.md
*/ACCEPTANCE_REPORT.md
METHODOLOGY.md
EMPIRICAL_PLAN.md
# bench-results: gitignore the directory by default (internal iteration notes,
# wave plans, gate decisions, methodology drafts), but selectively un-ignore
# the public empirical receipts that the README / REPRODUCIBILITY / CHANGELOG
# / paper cite as "Receipt" for measured headlines. The numbered campaigns
# 00–19 + their _raw.{json,csv} are the ACM AE Available artifacts; the
# aggregate docs (BENCHMARKS, METHODOLOGY, EVIDENCE) and binary acceptance
# B07–B09 + B13 are the public-friendly factual receipts.
bench-results/*
!bench-results/[0-9][0-9]_*.md
!bench-results/[0-9][0-9]_*.json
!bench-results/[0-9][0-9]_*.csv
!bench-results/BENCHMARKS.md
!bench-results/METHODOLOGY.md
!bench-results/EVIDENCE.md
!bench-results/OPEN_AUDIT_ITEMS.md
!bench-results/B07_supply_chain.md
!bench-results/B08_fuzz_inventory.md
!bench-results/B09_property_100k.md
!bench-results/B13_criterion.md
# bench-results/scripts/ holds the reproducer scripts referenced in REPRODUCIBILITY.md
!bench-results/scripts/
!bench-results/scripts/**
# Re-ignore python bytecode under scripts/ (root __pycache__/ rule is overridden by the !** negation above)
bench-results/scripts/__pycache__/
bench-results/scripts/**/*.pyc