feat(eslint): Rule "no-unused-vars"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-13 16:28:10 +04:00
parent eaa0627dae
commit 4fa76141e1
2 changed files with 10 additions and 1 deletions

View File

@ -105,6 +105,15 @@
"allowIndentationTabs": true
}
],
"no-unused-vars": [
"error",
{
"args": "after-used",
"caughtErrors": "all",
"ignoreRestSiblings": false,
"vars": "all"
}
],
"object-curly-newline": [
"error",
{