Skip to content

Commit 23bbffc

Browse files
committed
Create gitignore
1 parent 32f811c commit 23bbffc

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

.gitignore

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Node Modules
2+
node_modules/
3+
4+
# Build and distribution folders
5+
dist/
6+
7+
# Logs
8+
logs/
9+
*.log
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Dependency directories
15+
bower_components/
16+
jspm_packages/
17+
18+
# Production
19+
.env
20+
21+
# Runtime data
22+
pids/
23+
*.pid
24+
*.seed
25+
*.pid.lock
26+
27+
# Coverage directory for testing tools
28+
coverage/
29+
30+
# IDE-specific files
31+
.idea/
32+
.vscode/
33+
*.swp
34+
35+
# OS-specific files
36+
.DS_Store
37+
Thumbs.db
38+
desktop.ini
39+
40+
# Temporary files and folders
41+
tmp/
42+
temp/
43+
44+
# Cache
45+
.cache/
46+
47+
# Files generated by build tools
48+
*.out
49+
*.tgz
50+
51+
# npm lock file
52+
package-lock.json
53+
yarn.lock
54+
55+
# Other ignored files
56+
*.bak
57+
*.env.local
58+
*.env.development.local
59+
*.env.test.local
60+
*.env.production.local
61+
src/copyright.js
62+
63+
# Developer-specific folder
64+
dev/

0 commit comments

Comments
 (0)