Inspectopedia Help

Nested ternary operator

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:

min = if x < y x < z ? x : z else y < z ? y : z end

Inspired by 'Ruby Style Guide'

Inspection Details

Available in:

Qodana for Ruby 2023.3, RubyMine 2023.3

Plugin:

Ruby, 233.SNAPSHOT

Last modified: 13 July 2023