@@ -26,6 +26,7 @@ module.exports = {
2626 camelcase : "error" ,
2727 "consistent-return" : "error" ,
2828 curly : "error" ,
29+ "default-case-last" : "error" ,
2930 "default-case" : "error" ,
3031 "default-param-last" : "error" ,
3132 "dot-notation" : "error" ,
@@ -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" ,
@@ -141,9 +145,11 @@ module.exports = {
141145 "no-unexpected-multiline" : "error" ,
142146 "no-unmodified-loop-condition" : "error" ,
143147 "no-unneeded-ternary" : "error" ,
148+ "no-unreachable-loop" : "error" ,
144149 "no-unreachable" : "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" ,
@@ -392,6 +401,7 @@ module.exports = {
392401 ] ,
393402 } ,
394403 ] ,
404+ // "@mysticatea/eslint-comments/require-description": "error",
395405 "@mysticatea/eslint-comments/require-description" : "off" ,
396406
397407 // prettier
0 commit comments