class Rufo::Formatter

def adjust_other_alignments(scope, line, column, offset)

def adjust_other_alignments(scope, line, column, offset)
  adjustments = @line_to_alignments_positions[line]
  return unless adjustments
  adjustments.each do |key, adjustment_column, target, index|
    next if adjustment_column <= column
    next if scope == key
    target[index][1] += offset if target[index]
  end
end