- Disallow else blocks after return statements in if statements
This rule is aimed at highlighting an unnecessary block of code following an if containing a return statement. As such, it will warn when it encounters an else following a chain of ifs, all of them containing a return statement.
Allows else if blocks after a return.
You can check them out here.