Skip to content

Commit 7c7b05e

Browse files
committed
initial commit
0 parents  commit 7c7b05e

File tree

13 files changed

+6733
-0
lines changed

13 files changed

+6733
-0
lines changed

.babelrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/env", {
5+
"targets": {
6+
"node": "current"
7+
}
8+
}
9+
]
10+
],
11+
"plugins": ["@babel/plugin-proposal-object-rest-spread"]
12+
}

.eslintrc.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
{
3+
"env": {
4+
"es6": true,
5+
"node": true
6+
},
7+
"extends": "airbnb-base",
8+
"parserOptions": {
9+
"ecmaVersion": 2018,
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"indent": [
14+
"error",
15+
2
16+
],
17+
"linebreak-style": [
18+
"error",
19+
"unix"
20+
],
21+
"quotes": [
22+
"error",
23+
"single"
24+
],
25+
"semi": [
26+
"error",
27+
"always"
28+
],
29+
"no-console": [
30+
"off"
31+
],
32+
"import/named": [
33+
"off"
34+
],
35+
"no-case-declarations": [
36+
"off"
37+
],
38+
"eol-last": [
39+
"error",
40+
"always"
41+
],
42+
"no-underscore-dangle": "off"
43+
}
44+
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

0 commit comments

Comments
 (0)