Offers to replace partial functions with normal function if possible.

Before:

Seq(1).foreach {
  case _ => 3
}

After:
Seq(1).foreach(_ => 3)