aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-14 01:20:05 +0300
committerValentin Popov <info@valentineus.link>2020-02-14 01:20:05 +0300
commit5051eed9df34c9beb2a9fd9e2ba379b43cd411f5 (patch)
tree979fb63acdfc1e06fb0f7e34618de18af828d1f9
parent81d3e2381071b3123d9c4cc4992b953407c1b131 (diff)
downloadeslint-config-5051eed9df34c9beb2a9fd9e2ba379b43cd411f5.tar.xz
eslint-config-5051eed9df34c9beb2a9fd9e2ba379b43cd411f5.zip
feat(eslint): Rule "no-useless-rename"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/default.json8
2 files changed, 9 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index b58a7f4..106b598 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -214,7 +214,7 @@
- [ ] "no-useless-concat"
- [ ] "no-useless-constructor"
- [ ] "no-useless-escape"
-- [ ] "no-useless-rename"
+- [X] "no-useless-rename"
- [ ] "no-useless-return"
- [X] "no-var"
- [ ] "no-void"
diff --git a/src/rules/default.json b/src/rules/default.json
index 225e061..9da13f1 100644
--- a/src/rules/default.json
+++ b/src/rules/default.json
@@ -362,6 +362,14 @@
"vars": "all"
}
],
+ "no-useless-rename": [
+ "error",
+ {
+ "ignoreDestructuring": false,
+ "ignoreExport": false,
+ "ignoreImport": false
+ }
+ ],
"no-var": [
"error"
],