List all checks performed
Arguments
- gp
gpoutput.
See also
Other API:
failed_checks(),
results()
Examples
path <- system.file("bad1", package = "goodpractice")
# run a subset of all checks available
g <- gp(path, checks = all_checks()[3:16])
#> ℹ Preparing: description
#> ✔ Preparing: description [13ms]
#>
#> ℹ Preparing: lintr
#> ✔ Preparing: lintr [169ms]
#>
checks(g)
#> [1] "no_description_depends" "no_description_date"
#> [3] "description_url" "description_not_start_with_package"
#> [5] "description_urls_in_angle_brackets" "description_doi_format"
#> [7] "description_urls_not_http" "no_description_duplicate_deps"
#> [9] "description_valid_roles" "description_pkgname_single_quoted"
#> [11] "description_bugreports" "lintr_assignment_linter"
#> [13] "lintr_line_length_linter" "lintr_semicolon_linter"
