@@ -42,18 +42,23 @@ module.exports = {
4242 ] ,
4343 "@typescript-eslint/restrict-plus-operands" : [ "warn" , { "checkCompoundAssignments" : true } ] ,
4444 "@typescript-eslint/no-throw-literal" : "warn" ,
45+ "@typescript-eslint/unbound-method" : "warn" ,
46+ "@typescript-eslint/explicit-module-boundary-types" : "warn" ,
4547 "@typescript-eslint/no-extra-semi" : "warn" ,
4648 "@typescript-eslint/no-extra-non-null-assertion" : "warn" ,
4749 "@typescript-eslint/no-unused-vars" : [ "warn" , { "argsIgnorePattern" : "^_" } ] ,
4850 "@typescript-eslint/no-use-before-define" : "warn" ,
4951 "@typescript-eslint/no-for-in-array" : "warn" ,
52+ "@typescript-eslint/no-unsafe-argument" : "warn" ,
53+ "@typescript-eslint/no-unsafe-call" : "warn" ,
54+ // "@typescript-eslint/no-unsafe-member-access": "warn", // too strict, especially for testing
5055 "@typescript-eslint/no-unnecessary-condition" : [ "warn" , { "allowConstantLoopConditions" : true } ] ,
56+ "@typescript-eslint/no-unnecessary-type-constraint" : "warn" ,
5157 "@typescript-eslint/no-implied-eval" : "warn" ,
5258 "@typescript-eslint/no-non-null-asserted-optional-chain" : "warn" ,
5359 "@typescript-eslint/no-invalid-void-type" : "warn" ,
5460 "@typescript-eslint/no-loss-of-precision" : "warn" ,
5561 "@typescript-eslint/no-confusing-void-expression" : "warn" ,
56- "@typescript-eslint/no-unnecessary-type-constraint" : "warn" ,
5762 "@typescript-eslint/prefer-for-of" : "warn" ,
5863 "@typescript-eslint/prefer-includes" : "warn" ,
5964 "@typescript-eslint/prefer-string-starts-ends-with" : "warn" ,
@@ -62,9 +67,9 @@ module.exports = {
6267 "@typescript-eslint/prefer-nullish-coalescing" : "warn" ,
6368 "@typescript-eslint/prefer-optional-chain" : "warn" ,
6469 "@typescript-eslint/prefer-ts-expect-error" : "warn" ,
70+ "@typescript-eslint/prefer-regexp-exec" : "warn" ,
6571
6672 "@typescript-eslint/indent" : "off" ,
67- "@typescript-eslint/explicit-module-boundary-types" : "off" ,
6873 "@typescript-eslint/no-explicit-any" : "off" ,
6974 "@typescript-eslint/no-empty-interface" : "off" ,
7075 "@typescript-eslint/no-empty-function" : "off" ,
0 commit comments