class RuboCop::Cop::Style::DotPosition

def message(_node)

def message(_node)
  'Place the . on the ' +
    case style
    when :leading
      'next line, together with the method name.'
    when :trailing
      'previous line, together with the method call receiver.'
    end
end