feat(eslint): Rule "no-useless-rename"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
2020-02-14 02:20:05 +04:00
parent 81d3e23810
commit 5051eed9df
2 changed files with 9 additions and 1 deletions

View File

@ -362,6 +362,14 @@
"vars": "all"
}
],
"no-useless-rename": [
"error",
{
"ignoreDestructuring": false,
"ignoreExport": false,
"ignoreImport": false
}
],
"no-var": [
"error"
],