diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rules/typescript/default.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json index a2253a2..41577d8 100644 --- a/src/rules/typescript/default.json +++ b/src/rules/typescript/default.json @@ -78,6 +78,15 @@ ] } ], + "@typescript-eslint/no-unused-vars": [ + "error", + { + "args": "after-used", + "caughtErrors": "all", + "ignoreRestSiblings": false, + "vars": "all" + } + ], "@typescript-eslint/quotes": [ "error", "double", @@ -129,6 +138,9 @@ "no-magic-numbers": [ "off" ], + "no-unused-vars": [ + "off" + ], "quotes": [ "off" ], |