Learn R Programming

goodpractice (version 1.2.0)

checks: List all checks performed

Description

List all checks performed

Usage

checks(gp)

Value

Character vector of check names.

Arguments

gp

gp output.

See Also

Other API: customization, failed_checks(), failed_positions()

Examples

Run this code
path <- system.file("bad1", package = "goodpractice")
# Run a subset of all checks available
g <- gp(path, checks = all_checks()[9:16])
checks(g)
# Or run with named check groups
g <- gp(path, checks = checks_by_group("description", "namespace"))
checks(g)

Run the code above in your browser using DataLab