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
# Rust build artifacts
/target/
Cargo.lock
# WASM build artifacts (generated by wasm-pack)
/wasm/pkg/
/wasm/node_modules/
/wasm/dist/
# IDE and editor files
.idea/
.vscode/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Test and coverage artifacts
*.profraw
*.profdata
coverage/
tarpaulin-report.html
# Fuzz artifacts
/fuzz/target/
/fuzz/corpus/
/fuzz/artifacts/
# Benchmark artifacts
criterion/
# Local configuration
.env
.env.local
*.local
# Debug files
*.log
*.pdb
# Temporary files
*.tmp
*.temp
/tmp/
# Node modules (anywhere in project)
node_modules/
# Smoke test directory
smoke_test_w25/
# Scripts node modules
scripts/node_modules/
scripts/package-lock.json
# Root package files (for dev tooling)
/package-lock.json
# NUL file (Windows artifact)
NUL