-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (50 loc) · 690 Bytes
/
Copy path.gitignore
File metadata and controls
61 lines (50 loc) · 690 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
61
# Rust
/target/
**/*.rs.bk
*.pdb
# Note: Keep Cargo.lock for applications, but not for libraries
# This is a library, so Cargo.lock should be in version control for reproducible builds
# but it's not published to crates.io
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Environment
.env
.env.local
# API Keys and Secrets
**/secrets/
**/credentials/
*.key
*.pem
# Documentation
/target/doc/
# Test artifacts
*.profraw
*.profdata
# Coverage
*.lcov
tarpaulin-report.html
# macOS
.DS_Store
.AppleDouble
.LSOverride
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Linux
.directory
# Logs
*.log
*.log.*
logs/
# Example output files and tracking data
*.csv
*.png
*.jpg
*.jpeg
map_*.png