Skip to content

Commit 992e558

Browse files
authored
Merge pull request #518 from Anmol-Baranwal/hack_gitignore
feat: update .gitignore file
2 parents 942f3b9 + d4e4029 commit 992e558

File tree

1 file changed

+140
-8
lines changed

1 file changed

+140
-8
lines changed

.gitignore

Lines changed: 140 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,172 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

3-
# ts
4-
5-
*.tsbuildinfo
6-
73
# dependencies
84
node_modules
95
.pnp
106
.pnp.js
7+
./package-lock.json
8+
package-lock.json
119

1210
# testing
1311
coverage
1412

1513
# next.js
1614
.next/
1715
out/
18-
build
16+
17+
# production
18+
/build
1919

2020
# misc
2121
.DS_Store
2222
*.pem
2323

24-
# debug
24+
# Logs
25+
logs
26+
*.log
2527
npm-debug.log*
2628
yarn-debug.log*
2729
yarn-error.log*
30+
lerna-debug.log*
2831
.pnpm-debug.log*
2932

30-
# local env files
33+
# dotenv environment variable files
34+
.env*.local
3135
.env.local
3236
.env.development.local
3337
.env.test.local
3438
.env.production.local
39+
.env
3540

3641
# turbo
3742
.turbo
3843

3944
.contentlayer
40-
.env
45+
46+
# vercel
47+
.vercel
48+
49+
# typescript cache
50+
*.tsbuildinfo
51+
52+
# typeScript declaration
53+
next-env.d.ts
54+
55+
# Diagnostic reports (https://nodejs.org/api/report.html)
56+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
57+
58+
# Runtime data
59+
pids
60+
*.pid
61+
*.seed
62+
*.pid.lock
63+
64+
# Directory for instrumented libs generated by jscoverage/JSCover
65+
lib-cov
66+
67+
# Coverage directory used by tools like istanbul
68+
*.lcov
69+
70+
# nyc test coverage
71+
.nyc_output
72+
73+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
74+
.grunt
75+
76+
# Bower dependency directory (https://bower.io/)
77+
bower_components
78+
79+
# node-waf configuration
80+
.lock-wscript
81+
82+
# Compiled binary addons (https://nodejs.org/api/addons.html)
83+
build/Release
84+
85+
# Dependency directories
86+
node_modules/
87+
jspm_packages/
88+
89+
# Snowpack dependency directory (https://snowpack.dev/)
90+
web_modules/
91+
92+
# Optional npm cache directory
93+
.npm
94+
95+
# Optional eslint cache
96+
.eslintcache
97+
98+
# Optional stylelint cache
99+
.stylelintcache
100+
101+
# Microbundle cache
102+
.rpt2_cache/
103+
.rts2_cache_cjs/
104+
.rts2_cache_es/
105+
.rts2_cache_umd/
106+
107+
# Optional REPL history
108+
.node_repl_history
109+
110+
# Output of 'npm pack'
111+
*.tgz
112+
113+
# Yarn Integrity file
114+
.yarn-integrity
115+
116+
# parcel-bundler cache (https://parceljs.org/)
117+
.cache
118+
.parcel-cache
119+
120+
# Next.js build output
121+
.next
122+
out
123+
124+
# Nuxt.js build / generate output
125+
.nuxt
126+
dist
127+
128+
# Gatsby files
129+
.cache/
130+
131+
# Comment in the public line in if your project uses Gatsby and not Next.js
132+
# https://nextjs.org/blog/next-9-1#public-directory-support
133+
# public
134+
# vuepress build output
135+
.vuepress/dist
136+
137+
# vuepress v2.x temp and cache directory
138+
.temp
139+
.cache
140+
141+
# Docusaurus cache and generated files
142+
.docusaurus
143+
144+
# Serverless directories
145+
.serverless/
146+
147+
# FuseBox cache
148+
.fusebox/
149+
150+
# DynamoDB Local files
151+
.dynamodb/
152+
153+
# TernJS port file
154+
.tern-port
155+
156+
# Stores VSCode versions used for testing VSCode extensions
157+
.vscode-test
158+
.vscode
159+
160+
# yarn v2
161+
.yarn/cache
162+
.yarn/unplugged
163+
.yarn/build-state.yml
164+
.yarn/install-state.gz
165+
.pnp.*
166+
167+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
168+
# dependencies
169+
/pnp.js
170+
171+
# Runtime data
172+
*.pid.lock

0 commit comments

Comments
 (0)