We have `use_if_null_to_convert_nulls_to_bools` to trigger the first case, but no diagnostic in the other two cases: ```dart void foo(bool? nullable, bool boolean) { if (nullable == true) {} if (boolean == true) {} if (boolean == false) {} } ``` CC @srawlins @bwilkerson