Skip to content

Commit cd6f344

Browse files
mezotvfinnkoetting
andcommitted
Finish v4 update
Co-Authored-By: Finn Kötting <[email protected]>
1 parent 0f293d2 commit cd6f344

36 files changed

+2161
-1799
lines changed

.eslintignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
/node_modules
2-
package-lock.json
1+
/node_modules
2+
package-lock.json
33
yarn.lock

.eslintrc.json

+45-45
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
1-
{
2-
"env": {
3-
"browser": true,
4-
"commonjs": true,
5-
"es2021": true
6-
},
7-
"extends": ["airbnb-base"],
8-
"parserOptions": {
9-
"ecmaVersion": "latest"
10-
},
11-
"rules": {
12-
"no-unused-vars": "off",
13-
"no-console": "off",
14-
"no-empty": "off",
15-
"no-constant-condition": "off",
16-
"import/no-dynamic-require": "off",
17-
"global-require": "off",
18-
"no-restricted-syntax": "off",
19-
"eqeqeq": "off",
20-
"max-len": "off",
21-
"no-param-reassign": "off",
22-
"linebreak-style": "off",
23-
"no-shadow": "off",
24-
"consistent-return": "off",
25-
"default-case": "off",
26-
"no-case-declarations": "off",
27-
"guard-for-in": "off",
28-
"prefer-const": "off",
29-
"prefer-destructuring": "off",
30-
"no-loop-func": "off",
31-
"no-useless-return": "off",
32-
"no-return-assign": "off",
33-
"no-lonely-if": "off",
34-
"for-direction": "off",
35-
"no-eval": "off",
36-
"arrow-body-style": "off",
37-
"no-mixed-operators": "off",
38-
"no-inner-declarations": "off",
39-
"import/no-absolute-path": "off",
40-
"no-underscore-dangle": "off",
41-
"no-bitwise": "off",
42-
"camelcase":"off",
43-
"no-var": "off"
44-
}
45-
}
1+
{
2+
"env": {
3+
"browser": true,
4+
"commonjs": true,
5+
"es2021": true
6+
},
7+
"extends": ["airbnb-base"],
8+
"parserOptions": {
9+
"ecmaVersion": "latest"
10+
},
11+
"rules": {
12+
"no-unused-vars": "off",
13+
"no-console": "off",
14+
"no-empty": "off",
15+
"no-constant-condition": "off",
16+
"import/no-dynamic-require": "off",
17+
"global-require": "off",
18+
"no-restricted-syntax": "off",
19+
"eqeqeq": "off",
20+
"max-len": "off",
21+
"no-param-reassign": "off",
22+
"linebreak-style": "off",
23+
"no-shadow": "off",
24+
"consistent-return": "off",
25+
"default-case": "off",
26+
"no-case-declarations": "off",
27+
"guard-for-in": "off",
28+
"prefer-const": "off",
29+
"prefer-destructuring": "off",
30+
"no-loop-func": "off",
31+
"no-useless-return": "off",
32+
"no-return-assign": "off",
33+
"no-lonely-if": "off",
34+
"for-direction": "off",
35+
"no-eval": "off",
36+
"arrow-body-style": "off",
37+
"no-mixed-operators": "off",
38+
"no-inner-declarations": "off",
39+
"import/no-absolute-path": "off",
40+
"no-underscore-dangle": "off",
41+
"no-bitwise": "off",
42+
"camelcase":"off",
43+
"no-var": "off"
44+
}
45+
}

.gitignore

+108-108
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,109 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.idea
9-
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
37-
38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
40-
41-
# Dependency directories
42-
node_modules/
43-
jspm_packages/
44-
package-lock.json
45-
46-
# TypeScript v1 declaration files
47-
typings/
48-
49-
# TypeScript cache
50-
*.tsbuildinfo
51-
52-
# Optional npm cache directory
53-
.npm
54-
55-
# Optional eslint cache
56-
.eslintcache
57-
58-
# Microbundle cache
59-
.rpt2_cache/
60-
.rts2_cache_cjs/
61-
.rts2_cache_es/
62-
.rts2_cache_umd/
63-
64-
# Optional REPL history
65-
.node_repl_history
66-
67-
# Output of 'npm pack'
68-
*.tgz
69-
70-
# Yarn Integrity file
71-
.yarn-integrity
72-
73-
# dotenv environment variables file
74-
.env
75-
.env.test
76-
77-
# parcel-bundler cache (https://parceljs.org/)
78-
.cache
79-
80-
# Next.js build output
81-
.next
82-
83-
# Nuxt.js build / generate output
84-
.nuxt
85-
dist
86-
87-
# Gatsby files
88-
.cache/
89-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
90-
# https://nextjs.org/blog/next-9-1#public-directory-support
91-
# public
92-
93-
# vuepress build output
94-
.vuepress/dist
95-
96-
# Serverless directories
97-
.serverless/
98-
99-
# FuseBox cache
100-
.fusebox/
101-
102-
# DynamoDB Local files
103-
.dynamodb/
104-
105-
# TernJS port file
106-
.tern-port
107-
108-
# System files
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.idea
9+
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
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
package-lock.json
45+
46+
# TypeScript v1 declaration files
47+
typings/
48+
49+
# TypeScript cache
50+
*.tsbuildinfo
51+
52+
# Optional npm cache directory
53+
.npm
54+
55+
# Optional eslint cache
56+
.eslintcache
57+
58+
# Microbundle cache
59+
.rpt2_cache/
60+
.rts2_cache_cjs/
61+
.rts2_cache_es/
62+
.rts2_cache_umd/
63+
64+
# Optional REPL history
65+
.node_repl_history
66+
67+
# Output of 'npm pack'
68+
*.tgz
69+
70+
# Yarn Integrity file
71+
.yarn-integrity
72+
73+
# dotenv environment variables file
74+
.env
75+
.env.test
76+
77+
# parcel-bundler cache (https://parceljs.org/)
78+
.cache
79+
80+
# Next.js build output
81+
.next
82+
83+
# Nuxt.js build / generate output
84+
.nuxt
85+
dist
86+
87+
# Gatsby files
88+
.cache/
89+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
90+
# https://nextjs.org/blog/next-9-1#public-directory-support
91+
# public
92+
93+
# vuepress build output
94+
.vuepress/dist
95+
96+
# Serverless directories
97+
.serverless/
98+
99+
# FuseBox cache
100+
.fusebox/
101+
102+
# DynamoDB Local files
103+
.dynamodb/
104+
105+
# TernJS port file
106+
.tern-port
107+
108+
# System files
109109
.DS_Store

.gitpod.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# This configuration file was automatically generated by Gitpod.
2-
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3-
# and commit this file to your remote git repository to share the goodness with others.
4-
5-
tasks:
6-
- init: yarn install
7-
command: yarn run start
8-
9-
1+
# This configuration file was automatically generated by Gitpod.
2+
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3+
# and commit this file to your remote git repository to share the goodness with others.
4+
5+
tasks:
6+
- init: yarn install
7+
command: yarn run start
8+
9+

0 commit comments

Comments
 (0)