Reports any boolean expressions which can be formulated in a more compact and, arguably, clear way than by using a conditional expression.

Use the quick-fix to replace the boolean expression by a conditional expression.

Example:


  a && b || !a && c;

After the quick-fix is applied:


  a ? b : c;