Skip to content

Commit fae754d

Browse files
committed
chore(package): update dev dependencies
1 parent 0fb2ec6 commit fae754d

File tree

5 files changed

+3095
-3021
lines changed

5 files changed

+3095
-3021
lines changed

.eslintrc.js

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
module.exports = {
2-
env: { es6: true },
2+
extends: [
3+
// standard configuration
4+
"standard",
35

4-
// use standard configuration and disable rules handled by prettier
5-
extends: ["standard", "prettier"],
6+
// https://github.com/mysticatea/eslint-plugin-node#-rules
7+
"plugin:node/recommended",
8+
9+
// disable rules handled by prettier
10+
"prettier",
11+
"prettier/standard",
12+
],
613

714
rules: {
815
// prefer let/const over var
@@ -13,10 +20,11 @@ module.exports = {
1320
// should be included in standard: https://github.com/standard/eslint-config-standard/pull/133/
1421
"prefer-const": "error",
1522

16-
// detect incorrect import/require
23+
// detect incorrect import
1724
"node/no-extraneous-import": "error",
18-
"node/no-extraneous-require": "error",
19-
"node/no-missing-require": "error",
2025
"node/no-missing-import": "error",
26+
27+
// uncomment if you are using a builder like Babel
28+
"node/no-unsupported-features/es-syntax": "off",
2129
},
2230
};

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ node_js:
33
- stable
44
- 10
55
- 8
6-
- 6
76

87
# Use containers.
98
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/

0 commit comments

Comments
 (0)