@autoglobal doesn't search the package imports namespace for globals. This results in adding globals that wouldn't be triggered by rcmdcheck anyway -- unnecessary noise. Example:
#' @autoglobal
#' @importFrom pkgname funcname
my_func <- function(data) {
# funcname will be added to utils::globals()
dplyr::rename(data, newname = funcname)
}
@autoglobal
doesn't search the package imports namespace for globals. This results in adding globals that wouldn't be triggered by rcmdcheck anyway -- unnecessary noise. Example: