We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ea79dc commit 1a89e1cCopy full SHA for 1a89e1c
docs/rules/multiline-ternary.md
@@ -68,7 +68,7 @@ foo > bar ?
68
Examples of **incorrect** code for this rule with the `"always-multiline"` option:
69
70
```js
71
-/*eslint multiline-ternary: ["error", "always"]*/
+/*eslint multiline-ternary: ["error", "always-multiline"]*/
72
73
foo > bar ? value1 :
74
value2;
@@ -83,7 +83,7 @@ foo > bar &&
83
Examples of **correct** code for this rule with the `"always-multiline"` option:
84
85
86
87
88
foo > bar ? value1 : value2;
89
0 commit comments