File: devtools-package.R

package info (click to toggle)
r-cran-devtools 2.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,340 kB
  • sloc: sh: 15; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 663 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#' @section Package options:
#'
#' Devtools uses the following [options()] to configure behaviour:
#' * `devtools.install.args`: a string giving extra arguments passed to
#'   `R CMD install` by [install()].
#' * `devtools.path`: Deprecated. Path used by the now-deprecated [dev_mode()]
#'   function.
#' @docType package
#' @keywords internal
"_PACKAGE"

## usethis namespace: start
#' @importFrom lifecycle deprecated
## usethis namespace: end
NULL

# https://r-pkgs.org/dependencies-in-practice.html#how-to-not-use-a-package-in-imports
ignore_unused_imports <- function() {
  miniUI::miniPage
  profvis::profvis
  urlchecker::url_check
}