-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
60 lines (50 loc) · 761 Bytes
/
.gitignore
File metadata and controls
60 lines (50 loc) · 761 Bytes
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
# Rust build artifacts
/target
**/*.rs.bk
*.pdb
# IDE files
.idea/
.vscode/
*.swp
*.swo
*~
# Cargo lock file (libraries should not commit this)
# Cargo.lock
# OS files
.DS_Store
Thumbs.db
# Benchmark results
/target/criterion
# Test coverage
*.profraw
*.profdata
/coverage
# Documentation
/target/doc
# Test file pollution prevention
/test_*.script
/test_*
!/test_*/*
/debug_*.script
/temp_*.script
/tmp_*.script
/*_test.script
/*_debug.script
/*_test_*.script
/*_types.script
/type_*.script
/*test*.script
/all_*.script
# Temporary development files
/scratch.*
/playground.*
/experiment.*
/demo_*.script
# Additional temporary files
*.tmp
*.temp
*.bak
*.backup*
# VS Code Extension (moved to separate repo)
/vscode-script-extension/
simple_perf_test