no-nested-ternary
Configuration
rslint.config.ts
Rule Details
Disallows nested ternary expressions. Nesting ternary expressions can make code more difficult to understand; prefer an if statement or extract the logic into named variables.
Examples of incorrect code for this rule:
Examples of correct code for this rule: