View source: R/box_unused_attached_pkg_linter.R
box_unused_attached_pkg_linter | R Documentation |
box
library unused attached package linterChecks that all attached packages are used within the source file. This also covers packages
attached using the ...
.
box_unused_attached_pkg_linter()
For use in rhino
, see the
Explanation: Rhino style guide
to learn about the details.
A custom linter function for use with r-lib/lintr
.
# will produce lints
code <- "
box::use(
stringr
)
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
code <- "
box::use(
alias = stringr
)
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
code <- "
box::use(
stringr[...]
)
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
# okay
code <- "
box::use(
stringr
)
stringr$str_pad()
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
code <- "
box::use(
alias = stringr
)
alias$str_pad()
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
code <- "
box::use(
stringr[...]
)
str_pad()
"
lintr::lint(text = code, linters = box_unused_attached_pkg_linter())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.