diff options
-rw-r--r-- | ROADMAP.md | 2 | ||||
-rw-r--r-- | src/rules/default.json | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -189,7 +189,7 @@ - [ ] "no-sync" - [X] "no-tabs" - [ ] "no-template-curly-in-string" -- [ ] "no-ternary" +- [X] "no-ternary" - [ ] "no-this-before-super" - [ ] "no-throw-literal" - [ ] "no-trailing-spaces" diff --git a/src/rules/default.json b/src/rules/default.json index 8661d4d..f8b704d 100644 --- a/src/rules/default.json +++ b/src/rules/default.json @@ -135,6 +135,9 @@ "allowIndentationTabs": true } ], + "no-ternary": [ + "off" + ], "no-unused-vars": [ "error", { |