class RubbyCop::Cop::Layout::FirstMethodParameterLineBreak

This cop checks for a line break before the first parameter in a multi-line method parameter definition.

@example

# bad
def method(foo, bar,
    baz)
  do_something
end

# good
def method(
    foo, bar,
    baz)
  do_something
end

# ignored
def method foo,
    bar
  do_something
end

Constants

MSG

Public Instance Methods

on_method_def(node, _method_name, args, _body) click to toggle source
# File lib/rubbycop/cop/layout/first_method_parameter_line_break.rb, line 36
def on_method_def(node, _method_name, args, _body)
  check_method_line_break(node, args.to_a)
end