class RuboCop::Cop::Style::AlignHash::AlignmentOfValues

def all_have_same_separator?(node)

def all_have_same_separator?(node)
  first_separator = node.children.first.loc.operator.source
  node.children.butfirst.all? do |pair|
    pair.loc.operator.is?(first_separator)
  end
end