class RuboCop::RakeTask

def perform(option)

def perform(option)
  options = full_options.unshift(option)
  # `parallel` will automatically be removed from the options internally.
  # This is a nice to have to suppress the warning message
  # about --parallel and --autocorrect not being compatible.
  options.delete('--parallel')
  run_cli(verbose, options)
end