I would like the following to flag a lint:
void main() {
bool a = true;
a == false;
}
It would have caught a bug that was reported today (it's especially hard to tell that something fishy is going on when both "a" and "false" are actually much longer expressions).