Skip to content

Commit 5147e2b

Browse files
Update .gitignore file to exclude unnecessary directories and files
1 parent 32d2bbd commit 5147e2b

File tree

1 file changed

+131
-0
lines changed

1 file changed

+131
-0
lines changed

.gitignore

Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,134 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# Logs
26+
logs
27+
*.log
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
lerna-debug.log*
32+
.pnpm-debug.log*
33+
34+
# Diagnostic reports (https://nodejs.org/api/report.html)
35+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
36+
37+
# Runtime data
38+
pids
39+
*.pid
40+
*.seed
41+
*.pid.lock
42+
43+
# Directory for instrumented libs generated by jscoverage/JSCover
44+
lib-cov
45+
46+
# Coverage directory used by tools like istanbul
47+
coverage
48+
*.lcov
49+
50+
# nyc test coverage
51+
.nyc_output
52+
53+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
54+
.grunt
55+
56+
# Bower dependency directory (https://bower.io/)
57+
bower_components
58+
59+
# node-waf configuration
60+
.lock-wscript
61+
62+
# Compiled binary addons (https://nodejs.org/api/addons.html)
63+
build/Release
64+
65+
# Dependency directories
66+
node_modules/
67+
jspm_packages/
68+
69+
# Snowpack dependency directory (https://snowpack.dev/)
70+
web_modules/
71+
72+
# TypeScript cache
73+
*.tsbuildinfo
74+
75+
# Optional npm cache directory
76+
.npm
77+
78+
# Optional eslint cache
79+
.eslintcache
80+
81+
# Optional stylelint cache
82+
.stylelintcache
83+
84+
# Microbundle cache
85+
.rpt2_cache/
86+
.rts2_cache_cjs/
87+
.rts2_cache_es/
88+
.rts2_cache_umd/
89+
90+
# Optional REPL history
91+
.node_repl_history
92+
93+
# Output of 'npm pack'
94+
*.tgz
95+
96+
# Yarn Integrity file
97+
.yarn-integrity
98+
99+
# dotenv environment variable files
100+
.env
101+
.env.development.local
102+
.env.test.local
103+
.env.production.local
104+
.env.local
105+
106+
# parcel-bundler cache (https://parceljs.org/)
107+
.cache
108+
.parcel-cache
109+
110+
# Next.js build output
111+
.next
112+
out
113+
114+
# Nuxt.js build / generate output
115+
.nuxt
116+
dist
117+
118+
# Gatsby files
119+
.cache/
120+
# Comment in the public line in if your project uses Gatsby and not Next.js
121+
# https://nextjs.org/blog/next-9-1#public-directory-support
122+
# public
123+
124+
# vuepress build output
125+
.vuepress/dist
126+
127+
# vuepress v2.x temp and cache directory
128+
.temp
129+
.cache
130+
131+
# Docusaurus cache and generated files
132+
.docusaurus
133+
134+
# Serverless directories
135+
.serverless/
136+
137+
# FuseBox cache
138+
.fusebox/
139+
140+
# DynamoDB Local files
141+
.dynamodb/
142+
143+
# TernJS port file
144+
.tern-port
145+
146+
# Stores VSCode versions used for testing VSCode extensions
147+
.vscode-test
148+
149+
# yarn v2
150+
.yarn/cache
151+
.yarn/unplugged
152+
.yarn/build-state.yml
153+
.yarn/install-state.gz
154+
.pnp.*

0 commit comments

Comments
 (0)