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 /src/rules/default.json | |
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>
Diffstat (limited to 'src/rules/default.json')
-rw-r--r-- | src/rules/default.json | 6 |
1 files changed, 6 insertions, 0 deletions
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", { |