class RuboCop::Cop::HashAlignmentStyles::KeywordSplatAlignment

since a ‘kwsplat` does not have a key, separator or value.
This is a special case that just ensures the kwsplat is aligned with the rest of the hash
Handles calculation of deltas for `kwsplat` nodes.

def deltas(first_pair, current_pair)

def deltas(first_pair, current_pair)
  if Util.begins_its_line?(current_pair.source_range)
    { key: first_pair.key_delta(current_pair) }
  else
    {}
  end
end