Pattern: Use of multi-line method signature
Issue: -
This rule checks for method signatures that span multiple lines.
# good
def test(bar, baz)
end
# bad
def test(bar,
baz)
end
Pattern: Use of multi-line method signature
Issue: -
This rule checks for method signatures that span multiple lines.
# good
def test(bar, baz)
end
# bad
def test(bar,
baz)
end