Skip to content

Commit 7a4d386

Browse files
authored
Add .gitignore for Rust and environment files
1 parent dae77ce commit 7a4d386

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Rust build artifacts
2+
/target/
3+
**/*.rs.bk
4+
5+
# Compiled libraries and debug symbols
6+
*.pdb
7+
*.exp
8+
*.ilk
9+
*.lib
10+
11+
# Cargo.lock
12+
13+
# Editor and IDE droppings
14+
.vscode/
15+
.idea/
16+
*.swp
17+
*.swo
18+
*~
19+
*.iml
20+
.code-workspace
21+
22+
# Operating system clutter
23+
.DS_Store
24+
Thumbs.db
25+
desktop.ini
26+
._*
27+
28+
# Test outputs, logs, and coverage
29+
*.log
30+
*.tmp
31+
*.gcda
32+
*.gcno
33+
*.gcov
34+
coverage/
35+
*.profdata
36+
*.prof
37+
38+
# Local environment overrides
39+
.env
40+
.env.local

0 commit comments

Comments
 (0)