class RuboCop::Cop::Layout::SpaceAroundOperators

def excess_trailing_space?(right_operand, with_space)

def excess_trailing_space?(right_operand, with_space)
  with_space.source.end_with?(EXCESSIVE_SPACE) &&
    (!allow_for_alignment? || !aligned_with_something?(right_operand))
end