-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
180 lines (147 loc) · 3.51 KB
/
.gitignore
File metadata and controls
180 lines (147 loc) · 3.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/target
# macOS Finder copies sometimes create `target 2/`, `target 3/`, etc.
/target */
target*/
# Generated files
# Local scratch artifacts (regenerated)
.generated/
generated/
# Static analysis reports
unified-static-analysis-report.md
static-analysis-failures-summary.md
repo-specific-analysis.md
evaluation-pattern-analysis.md
opengrep-results.json
opengrep-results.sarif
opengrep-security-results.json
opengrep-nlp-results.json
opengrep-eval-results.json
opengrep-anno-results.json
opengrep-error-results.json
opengrep-memory-results.json
safety-report.json
safety-report.md
.geiger-tmp.json
.machete-tmp.txt
.deny-tmp.txt
lcov.info
coverage-html/
static-analysis-benchmark.txt
tool-comparison.md
.unsafe-code-trends/
*.html
!docs/**/*.html
# Export outputs (the CLI `anno export` writes here by convention)
exports/
# Cache directories
.anno_cache/
.cache/
.anno/
# Note: crates/anno workspace crate is tracked, but ignore any build artifacts within it
crates/anno/target/
# Proptest regressions (keep these in source control per proptest docs)
**/proptest-regressions/
# IDE
.idea/
.vscode/
*.swp
*.swo
.cursor/
# Claude Code (local settings, commands, artifacts)
.claude/
# Cargo crates.io packaging (local scratch)
crates/*/README.md
# OS
.DS_Store
Thumbs.db
# Local README preview artifacts (scratch)
README_preview_analysis*.txt
README_preview_screenshot*.png
# Python
.venv/
__pycache__/
*.pyc
*.pyo
*.py[cod]
*$py.class
# Local test output (scratch)
test_output/
# Local compiled binaries (scratch)
debug_entities
# Local real-data fixtures (may have redistribution restrictions; keep local-only)
hack/real_data/
# Temporary files
*.tmp
*.bak
*.backup
debug_*
url_validation_report.json
# Cargo local overrides (keep local-only config untracked)
.cargo/
!.cargo/
!.cargo/config.toml.example
.cargo/config.toml
mutants.out*/
# Spot evaluation ephemeral state
scripts/spot/config.env
scripts/spot/fleet_id.txt
scripts/spot/instance_ids.txt
runctl.toml
# Spot evaluation artifacts (raw results ignored, aggregated kept for baselines)
reports/spot/result-*.txt
reports/spot/result-*.json
# Test binaries and artifacts
test_*
test_profiling*
# Archived documentation (progress docs, old status reports)
docs/archive/
# Archive directory (skeleton code, old implementations)
archive/
# Generated evaluation reports (temporary, regenerated on demand)
*_report.md
*-report.md
*-seed-*.md
eval-seed-*.md
eval-sanity-report.md
comprehensive_evaluation_report.md
stress_test_report.md
verify_new_features_report.md
# Muxer history cache (ephemeral; don't commit)
crates/anno-eval/muxer_history*.json
# LinUCB global state (ephemeral; don't commit)
linucb_global_state.json
# Eval history + SQLite index (ephemeral; don't commit)
eval-results.jsonl
eval-history.db
# Atomic-write temp files (leftover on crash)
*.json.tmp
# Muxer decisions logs (ephemeral; don't commit)
# Default local path is under the OS cache, but devs may point ANNO_CACHE_DIR into the repo.
muxer_decisions*.jsonl
# Temporary review/status documents (should be in docs/ or archived)
FIXES_APPLIED.md
REVIEW_BACKWARDS.md
REVIEW_ISSUES.md
*.md
!README.md
!CHANGELOG.md
!CONTRIBUTING.md
!SECURITY.md
!docs/**/*.md
# Reports directory (generated; do not track)
reports/
# QA artifacts (generated; do not track)
qa/
.env
# MCP config (may contain API keys)
.mcp.json*
# fcoref ONNX symlinks (any depth; no trailing / — they're symlinks not dirs)
**/fcoref_onnx
# ONNX model artifacts (large, download on demand)
*.onnx
*.onnx_data
# Hygiene (added by guardian audit)
.env.*
*.log
dist/
build/