pkg_lifecycle_statuses {lifecycle} | R Documentation |
lint_lifecycle
dynamically queries the package documentation for packages
in packages
for lifecycle annotations and then searches the directory in
path
for usages of those functions.
lint_tidyverse_lifecycle
is a convenience function to call lint_lifecycle
for all the packages in the tidyverse.
pkg_lifecycle_statuses
returns a data frame of functions with lifecycle
annotations for an installed package.
pkg_lifecycle_statuses( package, which = c("superseded", "deprecated", "questioning", "defunct", "experimental", "soft-deprecated", "retired") ) lint_lifecycle( packages, path = ".", pattern = "[.][Rr](md)?", which = c("superseded", "deprecated", "questioning", "defunct", "experimental", "soft-deprecated", "retired") ) lint_tidyverse_lifecycle( path = ".", pattern = "[.][Rr](md)?", which = c("superseded", "deprecated", "questioning", "defunct", "experimental", "soft-deprecated", "retired") )
package |
The name of an installed package. |
which |
The lifecycle statuses to retrieve.
Include |
packages |
One or more installed packages to query for lifecycle statuses. |
path |
The directory path to the files you want to search. |
pattern |
Any files matching this pattern will be searched. The default
searches any files ending in |