Method: RuboCop::Cop::HashAlignmentStyles::KeyAlignment#deltas_for_first_pair

Defined in:
lib/rubocop/cop/mixin/hash_alignment_styles.rb

#deltas_for_first_pair(first_pair) ⇒ Object



13
14
15
16
17
18
# File 'lib/rubocop/cop/mixin/hash_alignment_styles.rb', line 13

def deltas_for_first_pair(first_pair)
  {
    separator: separator_delta(first_pair),
    value: value_delta(first_pair)
  }
end