We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This seems like a sensible rule to introduce.
To copy directly from the following link:
Nesting ternary expressions can make code more difficult to understand. e.g. var foo = bar ? baz : qux === quxx ? bing : bam;
var foo = bar ? baz : qux === quxx ? bing : bam;
https://eslint.org/docs/latest/rules/no-nested-ternary
The text was updated successfully, but these errors were encountered:
omg please, I hate it when I see this
Sorry, something went wrong.
PR: #771 Reviews appreciated.
Successfully merging a pull request may close this issue.
This seems like a sensible rule to introduce.
To copy directly from the following link:
https://eslint.org/docs/latest/rules/no-nested-ternary
The text was updated successfully, but these errors were encountered: