class RuboCop::Cop::Layout::ExtraSpacing

def aligned_tok?(token)

def aligned_tok?(token)
  if token.comment?
    @aligned_comments.include?(token.line)
  else
    aligned_with_something?(token.pos)
  end
end