class RuboCop::Cop::Offense

def column_length

Other tags:
    Api: - private
def column_length
  if first_line == last_line
    column_range.count
  else
    source_line.length - column
  end
end