@@ -32,8 +32,6 @@ module.exports = {
32
32
complexity : [ 2 , 5 ] ,
33
33
'consistent-this' : 2 ,
34
34
'default-case' : 2 ,
35
- 'default-case-last' : 2 ,
36
- 'default-param-last' : 2 ,
37
35
'func-name-matching' : [ 2 , { considerPropertyDescriptor : true } ] ,
38
36
'func-names' : [ 2 , 'as-needed' ] ,
39
37
'func-style' : 2 ,
@@ -53,7 +51,6 @@ module.exports = {
53
51
'no-constructor-return' : 2 ,
54
52
'no-duplicate-imports' : 2 ,
55
53
'no-else-return' : [ 2 , { allowElseIf : false } ] ,
56
- 'no-empty' : [ 2 , { allowEmptyCatch : true } ] ,
57
54
'no-extra-label' : 2 ,
58
55
'no-implicit-coercion' : 2 ,
59
56
'no-implicit-globals' : [ 2 , { lexicalBindings : true } ] ,
@@ -62,7 +59,6 @@ module.exports = {
62
59
'no-label-var' : 2 ,
63
60
'no-lonely-if' : 2 ,
64
61
'no-loop-func' : 2 ,
65
- 'no-loss-of-precision' : 2 ,
66
62
'no-magic-numbers' : [
67
63
2 ,
68
64
{
@@ -121,10 +117,8 @@ module.exports = {
121
117
'no-return-await' : 2 ,
122
118
'no-shadow' : 2 ,
123
119
'no-underscore-dangle' : [ 2 , { enforceInMethodNames : true } ] ,
124
- 'no-unreachable-loop' : 2 ,
125
120
'no-undef' : [ 2 , { typeof : true } ] ,
126
121
'no-unused-vars' : [ 2 , { } ] ,
127
- 'no-useless-backreference' : 2 ,
128
122
'no-useless-computed-key' : [ 2 , { enforceForClassMembers : true } ] ,
129
123
'no-useless-concat' : 2 ,
130
124
'no-var' : 2 ,
@@ -135,7 +129,6 @@ module.exports = {
135
129
'prefer-exponentiation-operator' : 2 ,
136
130
'prefer-numeric-literals' : 2 ,
137
131
'prefer-object-spread' : 2 ,
138
- 'prefer-regex-literals' : [ 2 , { disallowRedundantWrapping : true } ] ,
139
132
'prefer-rest-params' : 2 ,
140
133
'prefer-spread' : 2 ,
141
134
'prefer-template' : 2 ,
@@ -226,13 +219,13 @@ module.exports = {
226
219
] ,
227
220
228
221
'node/no-sync' : 2 ,
229
- 'node/handle-callback-err' : 2 ,
230
- 'node/no-new-require' : 2 ,
231
222
'node/callback-return' : 2 ,
232
223
'node/exports-style' : 2 ,
233
224
'node/file-extension-in-import' : 2 ,
234
225
'node/global-require' : 2 ,
235
226
'node/no-mixed-requires' : 2 ,
227
+ // Using path.join() is often not needed when using only core Node.js APIs
228
+ 'node/no-path-concat' : 0 ,
236
229
// Browser globals should not use `require()`. Non-browser globals should
237
230
'node/prefer-global/console' : 2 ,
238
231
'node/prefer-global/buffer' : [ 2 , 'never' ] ,
0 commit comments