@@ -26,6 +26,7 @@ module.exports = {
26
26
camelcase : "error" ,
27
27
"consistent-return" : "error" ,
28
28
curly : "error" ,
29
+ "default-case-last" : "error" ,
29
30
"default-case" : "error" ,
30
31
"default-param-last" : "error" ,
31
32
"dot-notation" : "error" ,
@@ -92,6 +93,7 @@ module.exports = {
92
93
"no-lone-blocks" : "error" ,
93
94
"no-lonely-if" : "error" ,
94
95
"no-loop-func" : "error" ,
96
+ "no-loss-of-precision" : "error" ,
95
97
"no-misleading-character-class" : "error" ,
96
98
"no-mixed-operators" : [
97
99
"error" ,
@@ -106,12 +108,14 @@ module.exports = {
106
108
"no-new-object" : "error" ,
107
109
"no-new-require" : "error" ,
108
110
"no-new-wrappers" : "error" ,
111
+ "no-nonoctal-decimal-escape" : "error" ,
109
112
"no-obj-calls" : "error" ,
110
113
"no-octal" : "error" ,
111
114
"no-octal-escape" : "error" ,
112
115
"no-param-reassign" : [ "error" , { props : false } ] ,
113
116
"no-process-env" : "error" ,
114
117
"no-process-exit" : "error" ,
118
+ "no-promise-executor-return" : "error" ,
115
119
"no-prototype-builtins" : "error" ,
116
120
"no-redeclare" : [ "error" , { builtinGlobals : true } ] ,
117
121
"no-regex-spaces" : "error" ,
@@ -141,9 +145,11 @@ module.exports = {
141
145
"no-unexpected-multiline" : "error" ,
142
146
"no-unmodified-loop-condition" : "error" ,
143
147
"no-unneeded-ternary" : "error" ,
148
+ "no-unreachable-loop" : "error" ,
144
149
"no-unreachable" : "error" ,
145
150
"no-unsafe-finally" : "error" ,
146
151
"no-unsafe-negation" : [ "error" , { enforceForOrderingRelations : true } ] ,
152
+ "no-unsafe-optional-chaining" : "error" ,
147
153
"no-unused-expressions" : "error" ,
148
154
"no-unused-labels" : "error" ,
149
155
"no-unused-vars" : [
@@ -157,6 +163,7 @@ module.exports = {
157
163
} ,
158
164
] ,
159
165
"no-use-before-define" : [ "error" , "nofunc" ] ,
166
+ "no-useless-backreference" : "error" ,
160
167
"no-useless-call" : "error" ,
161
168
"no-useless-catch" : "error" ,
162
169
"no-useless-concat" : "error" ,
@@ -299,6 +306,7 @@ module.exports = {
299
306
"guard-for-in" : "off" ,
300
307
"handle-callback-err" : "off" ,
301
308
"id-blacklist" : "off" ,
309
+ "id-denylist" : "off" ,
302
310
"id-length" : "off" ,
303
311
"id-match" : "off" ,
304
312
"line-comment-position" : "off" ,
@@ -332,6 +340,7 @@ module.exports = {
332
340
"no-path-concat" : "off" ,
333
341
"no-plusplus" : "off" ,
334
342
"no-proto" : "off" ,
343
+ "no-restricted-exports" : "off" ,
335
344
"no-restricted-globals" : "off" ,
336
345
"no-restricted-imports" : "off" ,
337
346
"no-restricted-modules" : "off" ,
@@ -392,6 +401,7 @@ module.exports = {
392
401
] ,
393
402
} ,
394
403
] ,
404
+ // "@mysticatea/eslint-comments/require-description": "error",
395
405
"@mysticatea/eslint-comments/require-description" : "off" ,
396
406
397
407
// prettier
0 commit comments