Skip to content

Commit c355859

Browse files
akamecoclaude
andcommitted
Update .gitignore to modern best practices
- Add comprehensive file patterns for better coverage - Include OS-specific files (.DS_Store, Thumbs.db) - Add IDE and editor temporary files - Include log files and runtime data patterns - Add coverage directories for testing tools 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 18fbb29 commit c355859

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

.gitignore

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
1-
node_modules
2-
lib
3-
dist
1+
# Dependencies
2+
node_modules/
3+
4+
# Build outputs
5+
lib/
6+
dist/
7+
compiled/
8+
9+
# Cache files
410
.eslintcache
511
.test-cache
12+
13+
# OS files
14+
.DS_Store
15+
Thumbs.db
16+
17+
# IDE files
18+
.vscode/
19+
.idea/
20+
*.swp
21+
*.swo
22+
23+
# Logs
24+
*.log
25+
npm-debug.log*
26+
yarn-debug.log*
27+
yarn-error.log*
28+
29+
# Runtime data
30+
pids
31+
*.pid
32+
*.seed
33+
*.pid.lock
34+
35+
# Coverage directory used by tools like istanbul
36+
coverage/
37+
.nyc_output/

0 commit comments

Comments
 (0)