Reports any
boolean
expressions which can be expressed more compactly, and arguably more clearly, as a conditional expression. Take for example the following expression:
a && b || !a && c;
which may be expressed as:
a ? b : c;
New in 15