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.
Being able to warn about nested ternary statements would be useful.
For example:
(1 === TRUE ? "Yay" : "Nay")
Would be fine, however:
(1 === TRUE ? ( 0 === FALSE ? "Foo" : "Bar" ) : "Nay")
Should report a warning that too many ternary statements are nested.