diff options
Diffstat (limited to 'src/rules/eslint.json')
-rw-r--r-- | src/rules/eslint.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/rules/eslint.json b/src/rules/eslint.json index 3c57015..0ec8660 100644 --- a/src/rules/eslint.json +++ b/src/rules/eslint.json @@ -105,6 +105,15 @@ "allowIndentationTabs": true } ], + "no-unused-vars": [ + "error", + { + "args": "after-used", + "caughtErrors": "all", + "ignoreRestSiblings": false, + "vars": "all" + } + ], "object-curly-newline": [ "error", { |