Skip to content

Commit

Permalink
add dummy function to supress R CMD check note
Browse files Browse the repository at this point in the history
  • Loading branch information
bblodfon committed May 25, 2020
1 parent dc170ed commit 3a56ed3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion R/create_temp.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,17 @@ copy_bookdown_template_files = function(path) {
TRUE
}

# Suppress R CMD check note
#' Dummy function to suppress R CMD check note on some platforms
#'
#' @importFrom bookdown render_book
#' @importFrom rmarkdown render
#' @importFrom knitr read_chunk
#' @importFrom DT datatable
#' @importFrom ggplot2 aes
dummy_fun = function() {
is.function(bookdown::render_book)
is.function(rmarkdown::render)
is.function(knitr::read_chunk)
is.function(DT::datatable)
is.function(ggplot2::aes)
}

0 comments on commit 3a56ed3

Please sign in to comment.