Inspectopedia
 
2024.3

Nested ternary operator

Info
New
Last modified: 03 December 2024

Reports nested ternary operators. Nested ternary operators can be difficult to read, and it is often preferable to use at least one if statement instead.

Example:

min = x < y ? (x < z ? x : z) : (y < z ? y : z)

After the quick-fix is applied, the result looks like this:

Inspired by 'Ruby Style Guide'