This function adds files/folders to the .Rbuildignore
file. If a
.Rbuildignore
is already present, files to be ignored while checking
package are just added to this file. Otherwise a new file is created.
add_to_buildignore(x, open = FALSE, quiet = FALSE)
A character vector. One or several files/folders names to be added
to the .Rbuildignore
. This argument is mandatory.
A logical value. If TRUE
the .Rbuildignore
file is opened in
the editor. Default is FALSE
.
A logical value. If TRUE
messages are deleted. Default is
FALSE
.
No return value.
Other development functions:
add_dependencies()
,
add_github_actions_check()
,
add_github_actions_codecov()
,
add_github_actions_pkgdown()
,
add_github_actions_render()
,
add_r_depend()
,
add_to_gitignore()
if (FALSE) {
add_to_buildignore(open = TRUE)
add_to_buildignore(".DS_Store")
}