A function that creates a style guide to use, by default
tidyverse_style() (without the parentheses). Not used
further except to construct the argument transformers. See
style_guides() for details.
transformers
A set of transformer functions. This argument is most
conveniently constructed via the style argument and .... See
'Examples'.
exclude_files
Character vector with paths to files that should be
excluded from styling.
Warning
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.
# NOT RUN {# the following is identical but the former is more convenient:style_pkg(style = tidyverse_style, strict = TRUE)
style_pkg(transformers = tidyverse_style(strict = TRUE))
# }