Skip to contents

The goal of checklist is to provide an elaborate and strict set of checks for R packages and R code.

Installation

You can install the package from the INBO universe via

# Enable the INBO universe
options(
  repos = c(
    inbo = "https://inbo.r-universe.dev", CRAN = "https://cloud.r-project.org"
  )
)
# Install the packages
install.packages("checklist")

If that doesn’t work, you can install the version from GitHub with:

# install.packages("remotes")
remotes::install_github("inbo/checklist")

Setting a default organisation

We created checklist with the Research Institute for Nature and Forest (INBO) in mind. When you don’t specify the organisation, checklist assumes the code was written by INBO personnel. INBO has specific requirements which are not relevant for external users of checklist.

When you are not writing code for INBO, we recommend that you set a default organisation. Below we specify the defaults for INBO. More details in vignette("organisation", package = "checklist").

library(checklist)
org <- organisation$new(
  github = "inbo", community = "inbo", email = "info@inbo.be",
  rightsholder = "Research Institute for Nature and Forest (INBO)",
  funder = "Research Institute for Nature and Forest (INBO)",
  organisation = list(
    "inbo.be" = list(
      affiliation = c(
        en = "Research Institute for Nature and Forest (INBO)",
        nl = "Instituut voor Natuur en Bosonderzoek (INBO)"
      ),
      orcid = TRUE
    ) 
  )
)
default_organisation(org = org)

Using checklist on a package.

Before you can run the checks, you must initialise checklist on the package. Either use create_package() to create a new package from scratch. Or use setup_package() on an existing package. More details in vignette("getting_started", package = "checklist").

Once initialised, you can run all the checks with check_package(). Or run the individual checks.

To allow some of the warnings or notes, first run the checks and store them in an object. Update checklist.yml by writing that object.

Using checklist on a project.

Before you can run the checks, you must initialise checklist on the project. Either use create_project() to create a new package from scratch. Or use setup_project() on an existing package. More details in vignette("getting_started_project", package = "checklist").

Once initialised, you can run all the checks with check_project(). Or run the individual checks.

To allow some of the warnings or notes, first run the checks and store them in an object. Update checklist.yml by writing that object.