Skip to content

Commit b13cb3b

Browse files
chore: update gitignore patterns - Add test coverage artifacts - Add linting and formatting caches - Add editor temporary files - Add VSCode specific patterns - Add Vitest snapshot patterns
1 parent d2006b2 commit b13cb3b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,29 @@ pnpm-debug.log*
2222

2323
# jetbrains setting folder
2424
.idea/
25+
26+
# Testing
27+
coverage/
28+
.nyc_output/
29+
*.lcov
30+
31+
# Cache directories
32+
.eslintcache
33+
.prettiercache
34+
.stylelintcache
35+
*.tsbuildinfo
36+
37+
# Temporary files
38+
*.swp
39+
*.swo
40+
*~
41+
42+
# VSCode settings
43+
.vscode/*
44+
!.vscode/extensions.json
45+
!.vscode/launch.json
46+
!.vscode/settings.json
47+
48+
# Vitest
49+
__snapshots__/
50+
*.snap

0 commit comments

Comments
 (0)