报告无意义或复杂的没有意义的布尔表达式或语句。

示例:


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

应用快速修复后,结果如下所示:


  let a = true;
  let b = x;