Pattern: Odd else
layout
Issue: -
This rule checks for odd else block layout - like having an expression on the same line as the else
keyword, which is usually a mistake.
# bad
if something
...
else do_this
do_that
end
# good
if something
...
else
do_this
do_that
end