Skip to content

Commit bb81fd4

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 f2be9a2 commit bb81fd4

File tree

4 files changed

+1379
-900
lines changed

4 files changed

+1379
-900
lines changed

.eslintrc.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,22 @@
44
},
55
"extends": "airbnb-base",
66
"rules": {
7-
"import/no-mutable-exports": 0,
7+
"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/no-extraneous-dependencies": ["error", {"devDependencies": true}],
12+
"import/no-mutable-exports": 0,
13+
"import/order": 0,
1214
"no-console": 0,
13-
"curly": 0,
15+
"no-else-return": 0,
16+
"no-param-reassign": 0,
17+
"no-plusplus": 0,
1418
"no-var": 0,
1519
"prefer-arrow-callback": 0,
1620
"prefer-template": 0,
17-
"func-names": 0,
18-
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
21+
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
22+
"vars-on-top": 0,
1923
"new-cap": [2, {
2024
"capIsNewExceptions": [
2125
"ShellString"

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ var shell = require('shelljs');
33
var child = require('child_process');
44
var path = require('path');
55

6-
76
function sleepWithCommand(time) {
87
child.execSync('sleep ' + time);
98
}

0 commit comments

Comments
 (0)