Skip to content

Commit 3971760

Browse files
committed
chore: Update .gitignore to include additional file patterns and directories
1 parent ac5f9d1 commit 3971760

File tree

1 file changed

+63
-1
lines changed

1 file changed

+63
-1
lines changed

.gitignore

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,63 @@
1-
/target
1+
# Rust/Cargo
2+
target/
3+
**/target/
4+
Cargo.lock
5+
6+
# IDEs and editors
7+
.idea/
8+
.vscode/
9+
*.swp
10+
*.swo
11+
*.swn
12+
*.bak
13+
*.tmp
14+
*.DS_Store
15+
*.iml
16+
17+
# OS files
18+
.DS_Store
19+
Thumbs.db
20+
ehthumbs.db
21+
Icon?
22+
._*
23+
24+
# Logs
25+
*.log
26+
27+
# Byproducts
28+
*.rlib
29+
*.rmeta
30+
*.d
31+
*.o
32+
*.so
33+
*.dylib
34+
*.dll
35+
*.exe
36+
*.a
37+
*.lib
38+
*.pyc
39+
*.pyo
40+
*.pyd
41+
*.class
42+
43+
# Test output
44+
*.profraw
45+
*.profdata
46+
*.gcda
47+
*.gcno
48+
*.gcov
49+
50+
# Backup files
51+
*~
52+
*.old
53+
*.orig
54+
55+
# Node/npm (if any JS tooling is used)
56+
node_modules/
57+
58+
# Misc
59+
/.env
60+
/.env.*
61+
config.toml
62+
ros_rules.md
63+
rust_rules.md

0 commit comments

Comments
 (0)