Skip to content

Commit 240f023

Browse files
committed
Bump dependencies + cleanup
1 parent fa62dc4 commit 240f023

File tree

6 files changed

+615
-951
lines changed

6 files changed

+615
-951
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ insert_final_newline = true
66
indent_style = space
77
indent_size = 4
88

9-
[*.{js,ts}]
9+
[*.{js,ts,cjs,mjs,jsx,tsx}]
1010
indent_size = 2
1111

1212
[{m,M}akefile]

.eslintrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
module.exports = {
2-
extends: 'standard',
2+
extends: '@gidw/eslint-config-standard-node',
33
parserOptions: {
44
ecmaVersion: 5,
55
sourceType: 'script'
66
},
77
env: {
88
node: true
9-
}
9+
},
10+
ignorePatterns: [
11+
'node_modules/'
12+
]
1013
}

.gitignore

Lines changed: 42 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
# Created by https://www.gitignore.io/api/node,linux,macos,windows,webstorm,visualstudiocode
3-
# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,webstorm,visualstudiocode
2+
# Created by https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,webstorm,visualstudiocode
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,linux,macos,windows,webstorm,visualstudiocode
44

55
### Linux ###
66
*~
@@ -26,6 +26,7 @@
2626
# Icon must end with two \r
2727
Icon
2828

29+
2930
# Thumbnails
3031
._*
3132

@@ -101,6 +102,12 @@ typings/
101102
# Optional eslint cache
102103
.eslintcache
103104

105+
# Microbundle cache
106+
.rpt2_cache/
107+
.rts2_cache_cjs/
108+
.rts2_cache_es/
109+
.rts2_cache_umd/
110+
104111
# Optional REPL history
105112
.node_repl_history
106113

@@ -113,28 +120,25 @@ typings/
113120
# dotenv environment variables file
114121
.env
115122
.env.test
123+
.env*.local
116124

117125
# parcel-bundler cache (https://parceljs.org/)
118126
.cache
127+
.parcel-cache
119128

120-
# next.js build output
129+
# Next.js build output
121130
.next
122131

123-
# nuxt.js build output
132+
# Nuxt.js build / generate output
124133
.nuxt
134+
dist
125135

126-
# rollup.js default build output
127-
dist/
128-
129-
# Uncomment the public line if your project uses Gatsby
136+
# Gatsby files
137+
.cache/
138+
# Comment in the public line in if your project uses Gatsby and not Next.js
130139
# https://nextjs.org/blog/next-9-1#public-directory-support
131-
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
132140
# public
133141

134-
# Storybook build outputs
135-
.out
136-
.storybook-out
137-
138142
# vuepress build output
139143
.vuepress/dist
140144

@@ -147,23 +151,25 @@ dist/
147151
# DynamoDB Local files
148152
.dynamodb/
149153

150-
# Temporary folders
151-
tmp/
152-
temp/
154+
# TernJS port file
155+
.tern-port
156+
157+
# Stores VSCode versions used for testing VSCode extensions
158+
.vscode-test
153159

154160
### VisualStudioCode ###
155161
.vscode/*
156-
!.vscode/settings.json
157162
!.vscode/tasks.json
158163
!.vscode/launch.json
159-
!.vscode/extensions.json
164+
*.code-workspace
160165

161166
### VisualStudioCode Patch ###
162167
# Ignore all local history of files
163168
.history
169+
.ionide
164170

165171
### WebStorm ###
166-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
172+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
167173
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
168174

169175
# User-specific stuff
@@ -193,6 +199,9 @@ temp/
193199
# When using Gradle or Maven with auto-import, you should exclude module files,
194200
# since they will be recreated, and may cause churn. Uncomment if using
195201
# auto-import.
202+
# .idea/artifacts
203+
# .idea/compiler.xml
204+
# .idea/jarRepositories.xml
196205
# .idea/modules.xml
197206
# .idea/*.iml
198207
# .idea/modules
@@ -241,15 +250,27 @@ fabric.properties
241250
# *.ipr
242251

243252
# Sonarlint plugin
253+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
244254
.idea/**/sonarlint/
245255

246256
# SonarQube Plugin
257+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
247258
.idea/**/sonarIssues.xml
248259

249260
# Markdown Navigator plugin
261+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
250262
.idea/**/markdown-navigator.xml
263+
.idea/**/markdown-navigator-enh.xml
251264
.idea/**/markdown-navigator/
252265

266+
# Cache file creation bug
267+
# See https://youtrack.jetbrains.com/issue/JBR-2257
268+
.idea/$CACHE_FILE$
269+
270+
# CodeStream plugin
271+
# https://plugins.jetbrains.com/plugin/12206-codestream
272+
.idea/codestream.xml
273+
253274
### Windows ###
254275
# Windows thumbnail cache files
255276
Thumbs.db
@@ -276,8 +297,7 @@ $RECYCLE.BIN/
276297
# Windows shortcuts
277298
*.lnk
278299

279-
# End of https://www.gitignore.io/api/node,linux,macos,windows,webstorm,visualstudiocode
280-
281-
## Project
300+
# End of https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,webstorm,visualstudiocode
282301

283302
temp
303+
tmp

.npmignore

Lines changed: 46 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

2-
# Created by https://www.gitignore.io/api/node,linux,macos,windows,webstorm,visualstudiocode
3-
# Edit at https://www.gitignore.io/?templates=node,linux,macos,windows,webstorm,visualstudiocode
2+
# Created by https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,webstorm,visualstudiocode
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,linux,macos,windows,webstorm,visualstudiocode
44

55
### Linux ###
66
*~
@@ -26,6 +26,7 @@
2626
# Icon must end with two \r
2727
Icon
2828

29+
2930
# Thumbnails
3031
._*
3132

@@ -101,6 +102,12 @@ typings/
101102
# Optional eslint cache
102103
.eslintcache
103104

105+
# Microbundle cache
106+
.rpt2_cache/
107+
.rts2_cache_cjs/
108+
.rts2_cache_es/
109+
.rts2_cache_umd/
110+
104111
# Optional REPL history
105112
.node_repl_history
106113

@@ -113,28 +120,25 @@ typings/
113120
# dotenv environment variables file
114121
.env
115122
.env.test
123+
.env*.local
116124

117125
# parcel-bundler cache (https://parceljs.org/)
118126
.cache
127+
.parcel-cache
119128

120-
# next.js build output
129+
# Next.js build output
121130
.next
122131

123-
# nuxt.js build output
132+
# Nuxt.js build / generate output
124133
.nuxt
134+
dist
125135

126-
# rollup.js default build output
127-
dist/
128-
129-
# Uncomment the public line if your project uses Gatsby
136+
# Gatsby files
137+
.cache/
138+
# Comment in the public line in if your project uses Gatsby and not Next.js
130139
# https://nextjs.org/blog/next-9-1#public-directory-support
131-
# https://create-react-app.dev/docs/using-the-public-folder/#docsNav
132140
# public
133141

134-
# Storybook build outputs
135-
.out
136-
.storybook-out
137-
138142
# vuepress build output
139143
.vuepress/dist
140144

@@ -147,23 +151,25 @@ dist/
147151
# DynamoDB Local files
148152
.dynamodb/
149153

150-
# Temporary folders
151-
tmp/
152-
temp/
154+
# TernJS port file
155+
.tern-port
156+
157+
# Stores VSCode versions used for testing VSCode extensions
158+
.vscode-test
153159

154160
### VisualStudioCode ###
155161
.vscode/*
156-
!.vscode/settings.json
157162
!.vscode/tasks.json
158163
!.vscode/launch.json
159-
!.vscode/extensions.json
164+
*.code-workspace
160165

161166
### VisualStudioCode Patch ###
162167
# Ignore all local history of files
163168
.history
169+
.ionide
164170

165171
### WebStorm ###
166-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
172+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
167173
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
168174

169175
# User-specific stuff
@@ -193,6 +199,9 @@ temp/
193199
# When using Gradle or Maven with auto-import, you should exclude module files,
194200
# since they will be recreated, and may cause churn. Uncomment if using
195201
# auto-import.
202+
# .idea/artifacts
203+
# .idea/compiler.xml
204+
# .idea/jarRepositories.xml
196205
# .idea/modules.xml
197206
# .idea/*.iml
198207
# .idea/modules
@@ -241,15 +250,27 @@ fabric.properties
241250
# *.ipr
242251

243252
# Sonarlint plugin
253+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
244254
.idea/**/sonarlint/
245255

246256
# SonarQube Plugin
257+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
247258
.idea/**/sonarIssues.xml
248259

249260
# Markdown Navigator plugin
261+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
250262
.idea/**/markdown-navigator.xml
263+
.idea/**/markdown-navigator-enh.xml
251264
.idea/**/markdown-navigator/
252265

266+
# Cache file creation bug
267+
# See https://youtrack.jetbrains.com/issue/JBR-2257
268+
.idea/$CACHE_FILE$
269+
270+
# CodeStream plugin
271+
# https://plugins.jetbrains.com/plugin/12206-codestream
272+
.idea/codestream.xml
273+
253274
### Windows ###
254275
# Windows thumbnail cache files
255276
Thumbs.db
@@ -276,18 +297,20 @@ $RECYCLE.BIN/
276297
# Windows shortcuts
277298
*.lnk
278299

279-
# End of https://www.gitignore.io/api/node,linux,macos,windows,webstorm,visualstudiocode
280-
281-
## Project
300+
# End of https://www.toptal.com/developers/gitignore/api/node,linux,macos,windows,webstorm,visualstudiocode
282301

283302
temp
303+
tmp
284304

285305
.idea
286306
.vscode
287307

308+
.gitignore
288309
.editorconfig
289310
.eslint-base.json
290-
.eslintrc.json
311+
.eslintrc.*
312+
.eslint-*
313+
tsconfig*
291314
.nvmrc
292315

293316
*.zip

0 commit comments

Comments
 (0)