Skip to content

Commit 7979f25

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 7998875 commit 7979f25

3 files changed

Lines changed: 1378 additions & 917 deletions

File tree

.eslintrc.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@
22
"env": {
33
"node": true
44
},
5-
"extends": "airbnb-base/legacy",
5+
"extends": "airbnb-base",
66
"rules": {
77
"comma-dangle": 0,
8-
"global-require": 0,
9-
"vars-on-top": 0,
10-
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
11-
"no-param-reassign": 0,
12-
"no-console": 0,
138
"curly": 0,
149
"func-names": 0,
10+
"global-require": 0,
11+
"import/order": 0,
12+
"no-console": 0,
13+
"no-else-return": 0,
14+
"no-param-reassign": 0,
15+
"no-plusplus": 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,
1521
"new-cap": [2, {
1622
"capIsNewExceptions": [
1723
"ShellString"

0 commit comments

Comments
 (0)