Pattern: Wrong condition position
Issue: -
This rule checks for conditions that are not on the same line as if
/while
/until
.
# bad
if
some_condition
do_something
end
# good
if some_condition
do_something
end
Pattern: Wrong condition position
Issue: -
This rule checks for conditions that are not on the same line as if
/while
/until
.
# bad
if
some_condition
do_something
end
# good
if some_condition
do_something
end