Pattern: Misplaced .
in method call
Issue: -
This rule checks the .
position in multi-line method calls.
# bad
something.
mehod
# good
something
.method
Attribute | Value |
---|---|
EnforcedStyle | leading |
SupportedStyles | leading, trailing |
Pattern: Misplaced .
in method call
Issue: -
This rule checks the .
position in multi-line method calls.
# bad
something.
mehod
# good
something
.method
Attribute | Value |
---|---|
EnforcedStyle | leading |
SupportedStyles | leading, trailing |