Performs various substitutions in the .R
file specified.
Carefully examine the results after running this function!
style_file(path, ..., style = tidyverse_style, transformers = style(...))
path | A path to a file to style. |
---|---|
... | Arguments passed on to the |
style | A function that creates a style guide to use, by default
|
transformers | A set of transformer functions. This argument is most
conveniently constructed via the |
This function overwrites files (if styling results in a change of the code to be formatted). It is strongly suggested to only style files that are under version control or to create a backup copy.
Other stylers: style_dir
,
style_pkg
, style_text
# NOT RUN { # the following is identical but the former is more convenient: style_file("file.R", style = tidyverse_style, strict = TRUE) style_text("file.R", transformers = tidyverse_style(strict = TRUE)) # }