Skip to content

Commit 12fe0fb

Browse files
unhappychoiceclaude
andcommitted
chore: Add .gitignore file
Add comprehensive .gitignore for Rust project including: - Rust build artifacts (target/, Cargo.lock) - IDE files (.vscode/, .idea/, etc.) - OS files (.DS_Store, Thumbs.db, etc.) - Database and log files - Claude Code configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7f40ba7 commit 12fe0fb

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Rust
2+
/target/
3+
Cargo.lock
4+
5+
# IDE
6+
.vscode/
7+
.idea/
8+
*.swp
9+
*.swo
10+
*~
11+
12+
# OS
13+
.DS_Store
14+
.DS_Store?
15+
._*
16+
.Spotlight-V100
17+
.Trashes
18+
ehthumbs.db
19+
Thumbs.db
20+
21+
# Logs
22+
*.log
23+
24+
# Database
25+
*.db
26+
*.sqlite
27+
*.sqlite3
28+
29+
# Backup files
30+
*.bak
31+
*.tmp
32+
33+
# Claude Code
34+
.claude/

0 commit comments

Comments
 (0)