Skip to content

Files

Latest commit

 

History

History
28 lines (19 loc) · 455 Bytes

Layout-FirstMethodArgumentLineBreak.md

File metadata and controls

28 lines (19 loc) · 455 Bytes

Pattern: Missing line break before first method argument

Issue: -

Description

This rule checks for a line break before the first argument in a multi-line method call.

Examples

# bad
method(foo, bar,
  baz)

# good
method(
  foo, bar,
  baz)

# ignored
method foo, bar,
  baz

Further Reading