Skip to contents

Get R CMD check results

Usage

results(x, ...)

# S3 method for class 'check_design'
results(
  x,
  error_on = Sys.getenv("CHECKED_RESULTS_ERROR_ON", c("never", "issues",
    "potential_issues")[1]),
  ...
)

Arguments

x

check_design object.

...

other parameters.

error_on

character vector indicating whether R error should be thrown when issues are discovered when generating results. "never" means that no errors are thrown. If "issues" then errors are emitted only on issues, whereas "potential issues" stands for error on both issues and potential issues. Users can set the default value via env variable CHECKED_RESULTS_ERROR_ON.

See also