This option controls whether conditional (ternary) expressions should be preferred over if/else statements when returning a value.
return condition ? trueValue : falseValue;
if (condition) { return trueValue; } else { return falseValue; }