class RuboCop::Cop::Layout::DotPosition

Checks the . position in multi-line method calls.

@example EnforcedStyle: leading (default)

# bad
something.
  method

# good
something
  .method

@example EnforcedStyle: trailing

# bad
something
  .method

# good
something.
  method