Pattern: Use of then
in multi-line when
Issue: -
Checks uses of the then
keyword in multi-line when
statements.
# bad
case foo
when bar then
end
# good
case foo
when bar
end
# good
case foo
when bar then do_something
end
Pattern: Use of then
in multi-line when
Issue: -
Checks uses of the then
keyword in multi-line when
statements.
# bad
case foo
when bar then
end
# good
case foo
when bar
end
# good
case foo
when bar then do_something
end