Check whether a package is ready for submission to
rOpenSci’s peer review system. The primary
function collates the output of
goodpractice,
including R CMD check results, a number of statistics via the
pkgstats package,
and checks for package structure expected for rOpenSci submissions. The
output of this function immediately indicates whether or not a package
is “Ready to Submit”.
The easiest way to install this package is via the associated
r-universe.
As shown there, simply enable the universe with
options (repos = c (
ropenscireviewtools = "https://ropensci-review-tools.r-universe.dev",
CRAN = "https://cloud.r-project.org"
))And then install the usual way with,
install.packages ("pkgcheckEditorExtra")Alternatively, the package can be installed by first installing either the remotes or pak packages and running one of the following lines:
remotes::install_github ("ropensci-review-tools/pkgcheck-editor-extra")
pak::pkg_install ("ropensci-review-tools/pkgcheck-editor-extra")The package can then loaded for use with
library (pkgcheckEditorExtra)Please note that this package is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.