View source: R/cheers_checker.R
find_folder_function_definitions | R Documentation |
Applies find_function_definitions to each file in a folder and aggregate results
find_folder_function_definitions(
foo_folder = ".",
f_excl = NULL,
d_excl = NULL
)
foo_folder |
A folder to apply find_function_definitions to each script in. |
f_excl |
A regular expression for files to NOT process (basename) |
d_excl |
A regular expression for directories to NOT process (dirname) |
A dataframe containing a column for function string and a column for function location.
# Skip listed files "somefile.R", and "another_file.R"
folder_path <- assertHE_example("example_project")
find_folder_function_definitions(
foo_folder = folder_path,
f_excl = "\\b(somefile\\.R|another_file\\.R)\\b"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.