-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid R CMD Check false alarms (#74)
* Avoid R CMD Check false alarms * NEWS bullet * Tag PR number
- Loading branch information
1 parent
2bffe93
commit d898586
Showing
3 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
# We import R6::R6Class() and V8::v8() below to avoid an R CMD Check false alarm | ||
# that states "Namespaces in Imports field not imported from". I guess this | ||
# comes up because we don't call these from inside functions. | ||
|
||
# The following block is used by usethis to automatically manage | ||
# roxygen namespace tags. Modify with care! | ||
## usethis namespace: start | ||
#' @import rlang | ||
#' @import vctrs | ||
#' @importFrom glue glue | ||
#' @importFrom R6 R6Class | ||
#' @importFrom V8 v8 | ||
#' @useDynLib almanac, .registration = TRUE | ||
## usethis namespace: end | ||
NULL |