@@ -746,6 +746,9 @@ const unicornRules = {
746746 // No need
747747 // "unicorn/no-array-reduce": "off",
748748
749+ // No need
750+ // "unicorn/no-array-reverse": "off",
751+
749752 // No need
750753 // "unicorn/no-await-expression-member": "off",
751754
@@ -837,6 +840,8 @@ const unicornRules = {
837840 // No need
838841 // "unicorn/no-unused-properties": "off",
839842
843+ "unicorn/no-useless-error-capture-stack-trace" : "error" ,
844+
840845 "unicorn/no-useless-fallback-in-spread" : "error" ,
841846
842847 "unicorn/no-useless-length-check" : "error" ,
@@ -878,6 +883,9 @@ const unicornRules = {
878883
879884 "unicorn/prefer-blob-reading-methods" : "error" ,
880885
886+ // TODO enable in future
887+ "unicorn/prefer-class-fields" : "error" ,
888+
881889 // No need
882890 // "unicorn/prefer-code-point": "error",
883891
@@ -997,6 +1005,8 @@ const unicornRules = {
9971005 // No need
9981006 // "unicorn/require-array-join-separator": "error",
9991007
1008+ "unicorn/require-module-specifiers" : "error" ,
1009+
10001010 // No need
10011011 // "unicorn/require-number-to-fixed-digits-argument": "error",
10021012
@@ -1026,7 +1036,8 @@ const importRules = {
10261036 // No need
10271037 // "import/no-deprecated": "off",
10281038
1029- "import/no-empty-named-blocks" : "error" ,
1039+ // No need, we have `unicorn/require-module-specifiers`
1040+ // "import/no-empty-named-blocks": "off",
10301041
10311042 "import/no-extraneous-dependencies" : "error" ,
10321043
0 commit comments