diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -198,7 +198,7 @@ - [X] "no-undefined" - [X] "no-underscore-dangle" - [ ] "no-unexpected-multiline" -- [ ] "no-unmodified-loop-condition" +- [X] "no-unmodified-loop-condition" - [X] "no-unneeded-ternary" - [ ] "no-unreachable" - [ ] "no-unsafe-finally" diff --git a/src/rules/default.json b/src/rules/default.json index a3dcce4..f6d347b 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -344,6 +344,9 @@ "enforceInMethodNames": false } ], + "no-unmodified-loop-condition": [ + "error" + ], "no-unneeded-ternary": [ "error", { |