transform_files {styler} | R Documentation |
Transform files with transformer functions
Description
transform_files
applies transformations to file contents and writes back
the result.
Usage
transform_files(
files,
transformers,
include_roxygen_examples,
base_indention,
dry
)
Arguments
files |
A character vector with paths to the file that should be transformed. |
transformers |
A list of transformer functions that operate on flat parse tables. |
include_roxygen_examples |
Whether or not to style code in roxygen examples. |
base_indention |
Integer scalar indicating by how many spaces the whole
output text should be indented. Note that this is not the same as splitting
by line and add a |
dry |
To indicate whether styler should run in dry mode, i.e. refrain
from writing back to files . |
Value
Invisibly returns a data frame that indicates for each file considered for
styling whether or not it was actually changed (or would be changed when
dry
is not "off").