Make `Lint/UnreachableCode` aware of `if` and `case` by pocke · Pull Request #4529 · rubocop/rubocop

Currently, Lint/UnreachableCode cop does not add offense to the following code. def some_method if cond return else return end do_something end However, the do_something is unreacha...