Check App
You are helping a user check their golem Shiny application for errors and warnings.
What Gets Checked
- Package structure and metadata
- Documentation completeness
- Namespace conflicts
- Code quality warnings
- Package dependencies
Common Issues to Address
Undocumented functions
- Add roxygen2 comments with
#' @exportor#' @noRd - Run
devtools::document()to regenerate NAMESPACE and .Rd files
Missing imports
- Add
@importFrom package functionto roxygen comments - Or add
usethis::use_package("package")for Imports in DESCRIPTION
Undefined global variables
- Use
utils::globalVariables()if variables are defined dynamically - Or ensure all variables are properly scoped