Skip to content

Commit 9dba94e

Browse files
committed
chore(linting): 🧹 update ignore files
1 parent c574f95 commit 9dba94e

File tree

4 files changed

+649
-211
lines changed

4 files changed

+649
-211
lines changed

.eslintignore

+165-53
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,119 @@
1-
# dotenv environment variable files
2-
.env*
3-
41
# Logs
5-
*.log*
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
69

7-
# Editor directories and files
8-
.vscode/*
9-
!.vscode/extensions.json
10-
!.vscode/settings.json
11-
.idea
12-
.DS_Store
13-
*.suo
14-
*.ntvs*
15-
*.njsproj
16-
*.sln
17-
*.sw?
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
*.lcov
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
1837

19-
# Optional tool caches
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional prettier cache
55+
.prettiercache
56+
57+
# Optional eslint cache
2058
.eslintcache
59+
60+
# Optional stylelint cache
2161
.stylelintcache
22-
.prettiercache
62+
63+
# Optional cspell cache
2364
.cspellcache
2465

25-
# Dependency directories
26-
node_modules
27-
jspm_packages
66+
# Microbundle cache
67+
.rpt2_cache/
68+
.rts2_cache_cjs/
69+
.rts2_cache_es/
70+
.rts2_cache_umd/
2871

29-
# npm
30-
.npm
31-
.npmrc
72+
# Optional REPL history
73+
.node_repl_history
3274

33-
# Yarn 2
34-
.pnp/
35-
.pnp.*
36-
.yarn/*
37-
!.yarn/cache
38-
!.yarn/patches
39-
!.yarn/plugins
40-
!.yarn/releases
41-
!.yarn/sdks
42-
!.yarn/versions
43-
.yarn-integrity # Yarn Integrity file
44-
45-
# Typescript
46-
*.tsbuildinfo
75+
# Output of 'npm pack'
76+
*.tgz
4777

48-
# Testing
49-
/coverage
78+
# Yarn Integrity file
79+
.yarn-integrity
5080

51-
# Next JS
52-
/.next/
53-
/out/
81+
# dotenv environment variable files
82+
.env
83+
.env.development
84+
.env.production
85+
.env.local
86+
.env.development.local
87+
.env.production.local
88+
.env.test.local
89+
90+
# parcel-bundler cache (https://parceljs.org/)
91+
.cache
92+
.parcel-cache
5493

5594
# Vercel folder
5695
.vercel
5796

58-
# Local Netlify
59-
.netlify
60-
.idea
97+
# Next.js build output
98+
.next
99+
out
100+
101+
# Next PWA
102+
**/public/precache.*.*.js
103+
**/public/sw.js
104+
**/public/workbox-*.js
105+
**/public/worker-*.js
106+
**/public/fallback-*.js
107+
**/public/precache.*.*.js.map
108+
**/public/sw.js.map
109+
**/public/workbox-*.js.map
110+
**/public/worker-*.js.map
111+
**/public/fallback-*.js
112+
113+
# Next Sitemap
114+
**/public/robots.txt
115+
**/public/sitemap.xml
116+
**/public/sitemap-0.xml
61117

62118
# Sentry
63119
.sentryclirc
@@ -68,17 +124,73 @@ storybook-static
68124
# Turbo Repo
69125
.turbo
70126

127+
# Nuxt.js build / generate output
128+
.nuxt
129+
dist
130+
131+
# Gatsby files
132+
.cache/
133+
# Comment in the public line in if your project uses Gatsby and not Next.js
134+
# https://nextjs.org/blog/next-9-1#public-directory-support
135+
# public
136+
137+
# Local Netlify
138+
.netlify
139+
.idea
140+
141+
# vuepress build output
142+
.vuepress/dist
143+
144+
# vuepress v2.x temp and cache directory
145+
.temp
146+
.cache
147+
148+
# Docusaurus cache and generated files
149+
.docusaurus
150+
151+
# Serverless directories
152+
.serverless/
153+
154+
# FuseBox cache
155+
.fusebox/
156+
157+
# DynamoDB Local files
158+
.dynamodb/
159+
160+
# TernJS port file
161+
.tern-port
162+
163+
# Stores VSCode versions used for testing VSCode extensions
164+
.vscode-test
165+
166+
# yarn v2
167+
.yarn/cache
168+
.yarn/unplugged
169+
.yarn/build-state.yml
170+
.yarn/install-state.gz
171+
.pnp.*
172+
173+
# Editor directories and files
174+
.vscode/*
175+
!.vscode/extensions.json
176+
!.vscode/settings.json
177+
.idea
178+
.DS_Store
179+
*.suo
180+
*.ntvs*
181+
*.njsproj
182+
*.sln
183+
*.sw?
184+
185+
# Release-it
186+
release-it/remote-commits.json
187+
release-it/**/*.hbs
188+
71189
# Lock files
72190
package-lock.json
73191
yarn.lock
74192
pnpm-lock.yaml
75193

76-
# Custom
77-
release-it/**/*.hbs
78-
release-it/remote-commits.json
79-
release-it/conventionalChangelogWriterOptsTransform.cjs
80-
81-
## library folder
82-
dist
194+
# Library files
83195
CHANGELOG.md
84-
public
196+
dist

0 commit comments

Comments
 (0)