module RuboCop::Cop::Style::ConditionalAssignmentHelper

def indent(cop, source)

def indent(cop, source)
  conf = cop.config.for_cop(END_ALIGNMENT)
  if conf[ALIGN_WITH] == KEYWORD
    ' ' * source.length
  else
    ''
  end
end