class RuboCop::Cop::Layout::SpaceAroundOperators

def excess_leading_space?(operator, with_space)

def excess_leading_space?(operator, with_space)
  with_space.source.start_with?(EXCESSIVE_SPACE) &&
    (!allow_for_alignment? || !aligned_with_operator?(operator))
end