Consider switching getOption("pkgType") from source to both per R options per the R macOS FAQ, “Only the CRAN build is guaranteed to be compatible with the package binaries on CRAN (or Bioconductor).”
Support creating repos in organizations
Consider incorporating the GitHub description into DESCRIPTION
Create a wrapper for spelling that includes notebooks in package spell checking, WORDLIST
Add a spell_check_test_notebooks() function for CI spellchecks on notebooks
Convert manual tests (Setup.Rmd) into an R Script that can be run from within the package created with create_github_repo()
Switch from development versions of styler (1.3.2.9000) and lintr (2.0.1.9000) when a new release becomes available - both were needed to address bugs in the current release versions, 1.3.2 and 2.0.1.
Add trailing slash to GitHub Pages URL
Update lint_all() to lint all types, including .Rpres
Add custom CSS files to _site.yml and analysis notebook templates to control font size, as described in this article, or possibly using bs_theme(), since pkgdown customizes the default using build_bslib() (issue exists in unsupported Safari 14 but not Safari 15)
Update errors and messages after reading Advanced R Conditions and re-reading the Tidyverse Style Guide
Establish default knitr options, including knitr::opts_chunk$set(fig.align = "center""), add to analysis template, also review settings for Advanced R
Reduce the number of Imports, per R CMD check:
> checking package dependencies ... NOTE
Imports includes 26 non-default packages.
Importing from so many packages makes the package vulnerable to any of
them becoming unavailable. Move as many as possible to Suggests and
use conditionally.