diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-13 22:46:58 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-13 22:46:58 +0300 |
commit | 320dab004aa7fb166b73329a11872f8935135e4e (patch) | |
tree | f7246c3c79d7135daed183fdeb77ca4a35edb104 | |
parent | 91b3361884b78b5024bf7b4815009aab8e80fb89 (diff) | |
download | eslint-config-320dab004aa7fb166b73329a11872f8935135e4e.tar.xz eslint-config-320dab004aa7fb166b73329a11872f8935135e4e.zip |
feat(eslint): Rule "no-unneeded-ternary"
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
@@ -199,7 +199,7 @@ - [X] "no-underscore-dangle" - [ ] "no-unexpected-multiline" - [ ] "no-unmodified-loop-condition" -- [ ] "no-unneeded-ternary" +- [X] "no-unneeded-ternary" - [ ] "no-unreachable" - [ ] "no-unsafe-finally" - [ ] "no-unsafe-negation" diff --git a/src/rules/default.json b/src/rules/default.json index dc3a90a..7a6f64b 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -254,6 +254,12 @@ "enforceInMethodNames": false } ], + "no-unneeded-ternary": [ + "error", + { + "defaultAssignment": true + } + ], "no-unused-vars": [ "error", { |