@@ -27,6 +27,7 @@ module.exports = {
2727 "consistent-return" : "error" ,
2828 curly : "error" ,
2929 "default-case" : "error" ,
30+ "default-case-last" : "error" ,
3031 "default-param-last" : "error" ,
3132 "dot-notation" : "error" ,
3233 eqeqeq : [ "error" , "always" , { null : "ignore" } ] ,
@@ -92,6 +93,7 @@ module.exports = {
9293 "no-lone-blocks" : "error" ,
9394 "no-lonely-if" : "error" ,
9495 "no-loop-func" : "error" ,
96+ "no-loss-of-precision" : "error" ,
9597 "no-misleading-character-class" : "error" ,
9698 "no-mixed-operators" : [
9799 "error" ,
@@ -106,12 +108,14 @@ module.exports = {
106108 "no-new-object" : "error" ,
107109 "no-new-require" : "error" ,
108110 "no-new-wrappers" : "error" ,
111+ "no-nonoctal-decimal-escape" : "error" ,
109112 "no-obj-calls" : "error" ,
110113 "no-octal" : "error" ,
111114 "no-octal-escape" : "error" ,
112115 "no-param-reassign" : [ "error" , { props : false } ] ,
113116 "no-process-env" : "error" ,
114117 "no-process-exit" : "error" ,
118+ "no-promise-executor-return" : "error" ,
115119 "no-prototype-builtins" : "error" ,
116120 "no-redeclare" : [ "error" , { builtinGlobals : true } ] ,
117121 "no-regex-spaces" : "error" ,
@@ -142,8 +146,10 @@ module.exports = {
142146 "no-unmodified-loop-condition" : "error" ,
143147 "no-unneeded-ternary" : "error" ,
144148 "no-unreachable" : "error" ,
149+ "no-unreachable-loop" : "error" ,
145150 "no-unsafe-finally" : "error" ,
146151 "no-unsafe-negation" : [ "error" , { enforceForOrderingRelations : true } ] ,
152+ "no-unsafe-optional-chaining" : "error" ,
147153 "no-unused-expressions" : "error" ,
148154 "no-unused-labels" : "error" ,
149155 "no-unused-vars" : [
@@ -157,6 +163,7 @@ module.exports = {
157163 } ,
158164 ] ,
159165 "no-use-before-define" : [ "error" , "nofunc" ] ,
166+ "no-useless-backreference" : "error" ,
160167 "no-useless-call" : "error" ,
161168 "no-useless-catch" : "error" ,
162169 "no-useless-concat" : "error" ,
@@ -299,6 +306,7 @@ module.exports = {
299306 "guard-for-in" : "off" ,
300307 "handle-callback-err" : "off" ,
301308 "id-blacklist" : "off" ,
309+ "id-denylist" : "off" ,
302310 "id-length" : "off" ,
303311 "id-match" : "off" ,
304312 "line-comment-position" : "off" ,
@@ -332,6 +340,7 @@ module.exports = {
332340 "no-path-concat" : "off" ,
333341 "no-plusplus" : "off" ,
334342 "no-proto" : "off" ,
343+ "no-restricted-exports" : "off" ,
335344 "no-restricted-globals" : "off" ,
336345 "no-restricted-imports" : "off" ,
337346 "no-restricted-modules" : "off" ,
@@ -409,9 +418,7 @@ module.exports = {
409418 semi : false ,
410419 tabWidth : 4 ,
411420 } ,
412- {
413- usePrettierrc : false ,
414- } ,
421+ { usePrettierrc : false } ,
415422 ] ,
416423
417424 // my own
0 commit comments