diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 00:27:43 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 00:27:43 +0300 |
commit | ab55229cd3b246378f99e743bbaa4cbb6ce9a034 (patch) | |
tree | 1bf332654754e354ad9002311a9841883aec3be0 | |
parent | e5752a7db1504475596273dab283b6bf76dcd9f5 (diff) | |
download | eslint-config-ab55229cd3b246378f99e743bbaa4cbb6ce9a034.tar.xz eslint-config-ab55229cd3b246378f99e743bbaa4cbb6ce9a034.zip |
feat(eslint): Rule "no-else-return"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 6 |
2 files changed, 7 insertions, 1 deletions
@@ -105,7 +105,7 @@ - [ ] "no-dupe-keys" - [ ] "no-duplicate-case" - [ ] "no-duplicate-imports" -- [ ] "no-else-return" +- [X] "no-else-return" - [X] "no-empty" - [ ] "no-empty-character-class" - [ ] "no-empty-function" diff --git a/src/rules/default.json b/src/rules/default.json index 05db158..7c2564c 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -218,6 +218,12 @@ "no-debugger": [ "warn" ], + "no-else-return": [ + "error", + { + "allowElseIf": false + } + ], "no-empty": [ "warn", { |