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
# Rust build artifacts and benchmarks
target/
Cargo.lock
**/*.rs.bk
*.pdb
# Note: Criterion.rs results in target/criterion/ are not tracked
# They are regenerated by 'cargo bench --release'
# Benchmark outputs (contain local paths and machine-specific data)
.benchmarks/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
.env
.env.local
# Profiling and coverage
*.profraw
*.profdata
/coverage/
*.lcov
cobertura.xml
tarpaulin-report.html
flamegraph.svg
flamegraphs/
*.perf
perf.data
perf.data.old
# Documentation
/doc/
# MkDocs build output
/site/
# Note: /docs/ is intentionally NOT ignored - it contains project documentation
# Test outputs
test-output/
*.log
# Large benchmark fixtures (regenerate with scripts/generate_benchmark_fixtures.py)
tests/data/fixtures/100k_records.mrc
# OS-specific
.DS_Store
Thumbs.db
BooksAll*.gz
# Python virtual environments
venv/
.venv
.venv/
env/
.env
# Python build artifacts
*.egg-info/
__pycache__/
dist/
build/
*.so
# Agent skills and configuration
.agents/
.abacus/
# External tools (LOC converters, etc.)
tools/
# Claude Code local settings (user-specific permissions)
.claude/settings.local.json