aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-13 21:56:47 +0300
committerValentin Popov <info@valentineus.link>2020-02-13 21:56:47 +0300
commitd7fea402cf940e27be3f01ceeef1c8135ac43fb7 (patch)
tree091813b9e096c3f29b31d5b6ad9f5897c961bfee
parentf49a9ddf6694d1542171c4ce8bd4ea153493319a (diff)
downloadeslint-config-d7fea402cf940e27be3f01ceeef1c8135ac43fb7.tar.xz
eslint-config-d7fea402cf940e27be3f01ceeef1c8135ac43fb7.zip
feat(typescript): Rule "strict-boolean-expressions"
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--ROADMAP.md2
-rw-r--r--src/rules/typescript/default.json8
2 files changed, 9 insertions, 1 deletions
diff --git a/ROADMAP.md b/ROADMAP.md
index 08840b7..85ca8ef 100644
--- a/ROADMAP.md
+++ b/ROADMAP.md
@@ -406,7 +406,7 @@
- [ ] "return-await"
- [X] "semi"
- [ ] "space-before-function-paren"
-- [ ] "strict-boolean-expressions"
+- [X] "strict-boolean-expressions"
- [ ] "switch-exhaustiveness-check"
- [ ] "triple-slash-reference"
- [ ] "type-annotation-spacing"
diff --git a/src/rules/typescript/default.json b/src/rules/typescript/default.json
index d8596f5..40f5473 100644
--- a/src/rules/typescript/default.json
+++ b/src/rules/typescript/default.json
@@ -61,6 +61,14 @@
"omitLastInOneLineBlock": false
}
],
+ "@typescript-eslint/strict-boolean-expressions": [
+ "error",
+ {
+ "allowNullable": false,
+ "allowSafe": false,
+ "ignoreRhs": false
+ }
+ ],
"indent": [
"off"
],