Class: RuboCop::Cop::Style::AlignHash::KeyAlignment

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/cop/style/align_hash.rb

Overview

Handles calculation of deltas (deviations from correct alignment) when the enforced style is 'key'.

Instance Method Summary collapse

Instance Method Details

#checkable_layout(_node) ⇒ Object



15
16
17
# File 'lib/rubocop/cop/style/align_hash.rb', line 15

def checkable_layout(_node)
  true
end

#deltas(first_pair, current_pair) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/rubocop/cop/style/align_hash.rb', line 23

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

#deltas_for_first_pairObject



19
20
21
# File 'lib/rubocop/cop/style/align_hash.rb', line 19

def deltas_for_first_pair(*)
  {} # The first pair is always considered correct.
end