Skip to content

Commit 414f5dd

Browse files
committed
chore: enhance gitignore
1 parent 134c1e3 commit 414f5dd

File tree

1 file changed

+148
-0
lines changed

1 file changed

+148
-0
lines changed

.gitignore

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

0 commit comments

Comments
 (0)