Suggests to replace trivial pattern match on a boolean expression with a conditional statement.

Before:

    bool match {
      case true => ???
      case false => ???
    }

After:
    if (bool) {
      ???
    } else {
      ???
    }