Reports a pointless or pointlessly complicated boolean expression or statement.

Example:


  let a = !(false && x);
  let b = false || x;

After the quick fix is applied the result looks like:


  let a = true;
  let b = x;