Nothing
#' @include lists.R
CHECKS$has_readme <- make_check(
description = "README file exists",
tags = c("info", "documentation"),
preps = "package_structure",
gp = 'add a {.file README.md} (or {.file README.Rmd}) file to the top-level
directory. A good README describes what the package does,
how to install it, and includes a short example.',
check = function(state) {
readme_patterns <- c(
"README.md", "README.Rmd", "README.qmd", "README"
)
found <- any(file.exists(file.path(state$path, readme_patterns)))
check_result(found)
}
)
## --------------------------------------------------------------------
CHECKS$has_news <- make_check(
description = "NEWS file exists",
tags = c("info", "documentation"),
preps = "package_structure",
gp = 'add a {.file NEWS.md} file to track user-visible changes between
releases. See {.url https://style.tidyverse.org/news.html}
for formatting guidance.',
check = function(state) {
news_patterns <- c("NEWS.md", "NEWS", "NEWS.Rd", "inst/NEWS.Rd")
found <- any(file.exists(file.path(state$path, news_patterns)))
check_result(found)
}
)
## --------------------------------------------------------------------
CHECKS$r_file_extension <- make_check(
description = "R scripts use .R file extension, not .r or .q",
tags = c("CRAN", "warning"),
preps = "package_structure",
gp = paste(
"use the {.file .R} file extension for R scripts,",
"not {.file .r} or {.file .q}.",
"CRAN requires the uppercase {.file .R} extension."
),
check = function(state) {
path <- state$path
rdir <- file.path(path, "R")
if (!dir.exists(rdir)) {
return(check_result(TRUE))
}
files <- list.files(rdir, pattern = "\\.(r|q)$", ignore.case = FALSE)
if (length(files) == 0) {
check_result(TRUE)
} else {
problems <- lapply(files, function(f) {
check_position(file.path("R", f), line = f)
})
check_result(FALSE, problems)
}
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.