class RuboCop::Cop::Layout::ConditionPosition

Checks for conditions that are not on the same line as if/while/until.

@example

# bad
if
  some_condition
  do_something
end

# good
if some_condition
  do_something
end