diff options
Diffstat (limited to 'src/rules/typescript/default.json')
-rw-r--r-- | src/rules/typescript/default.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index f65f761..b4fcc7a 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -133,7 +133,7 @@ "error" ], "@typescript-eslint/no-unsafe-member-access": [ - "error" + "warn" ], "@typescript-eslint/no-unsafe-return": [ "error" @@ -167,7 +167,7 @@ "error" ], "@typescript-eslint/prefer-readonly-parameter-types": [ - "error", + "warn", { "checkParameterProperties": true } @@ -249,10 +249,10 @@ "arrayDestructuring": true, "arrowParameter": true, "memberVariableDeclaration": true, - "objectDestructuring": true, + "objectDestructuring": false, "parameter": true, "propertyDeclaration": true, - "variableDeclaration": true, + "variableDeclaration": false, "variableDeclarationIgnoreFunction": false } ], @@ -289,4 +289,4 @@ "space-before-function-paren": [ "off" ] -}
\ No newline at end of file +} |