Skip to content

Commit b7e2e3c

Browse files
committed
chore: update deps and lint style
No change to logic. This updates dependencies and upgrades the lint style to es6.
1 parent 90557bc commit b7e2e3c

3 files changed

Lines changed: 1453 additions & 909 deletions

File tree

.eslintrc.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,22 @@
22
"env": {
33
"node": true
44
},
5-
"extends": "airbnb-base/legacy",
5+
"extends": "airbnb-base",
66
"rules": {
77
"comma-dangle": 0,
8+
"curly": 0,
9+
"func-names": 0,
810
"global-require": 0,
9-
"vars-on-top": 0,
10-
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
11-
"no-param-reassign": 0,
11+
"import/order": 0,
1212
"no-console": 0,
1313
"no-else-return": 0,
14+
"no-param-reassign": 0,
1415
"no-plusplus": 0,
15-
"curly": 0,
16-
"func-names": 0,
16+
"no-var": 0,
17+
"prefer-arrow-callback": 0,
18+
"prefer-template": 0,
19+
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
20+
"vars-on-top": 0,
1721
"new-cap": [2, {
1822
"capIsNewExceptions": [
1923
"ShellString"

0 commit comments

Comments
 (0)