Prettify arbitrary R code
Performs various substitutions in all .R
, .Rmd
and/or .Rnw
files
in a directory (by default only .R
files are styled - see filetype
argument).
Carefully examine the results after running this function!
style_dir( path = ".", ..., style = tidyverse_style, transformers = style(...), filetype = c("R", "Rprofile"), recursive = TRUE, exclude_files = NULL, exclude_dirs = c("packrat", "renv"), include_roxygen_examples = TRUE, base_indention = 0, dry = "off" )
path |
Path to a directory with files to transform. |
... |
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 |
filetype |
Vector of file extensions indicating which file types should
be styled. Case is ignored, and the |
recursive |
A logical value indicating whether or not files in subdirectories
of |
exclude_files |
Character vector with paths to files that should be excluded from styling. |
exclude_dirs |
Character vector with directories to exclude (recursively). |
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 . |
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").
This function overwrites files (if styling results in a change of the
code to be formatted and dry = "off"
). It is strongly suggested to only
style files that are under version control or to create a backup copy.
We suggest to first style with scope < "tokens"
and inspect and commit
changes, because these changes are guaranteed to leave the abstract syntax
tree (AST) unchanged. See section 'Round trip validation' for details.
Then, we suggest to style with scope = "tokens"
(if desired) and carefully
inspect the changes to make sure the AST is not changed in an unexpected way
that invalidates code.
The following section describes when and how styling is guaranteed to yield correct code.
If tokens are not in the styling scope (as specified with the scope
argument), no tokens are changed and the abstract syntax tree (AST) should
not change.
Hence, it is possible to validate the styling by comparing whether the parsed
expression before and after styling have the same AST.
This comparison omits roxygen code examples and comments. styler throws an
error if the AST has changed through styling.
Note that if tokens are to be styled, such a comparison is not conducted because the AST might well change and such a change is intended. There is no way styler can validate styling, that is why we inform the user to carefully inspect the changes.
See section 'Warning' for a good strategy to apply styling safely.
Other stylers:
style_file()
,
style_pkg()
,
style_text()
,
styler_addins
## Not run: style_dir("path/to/dir", file_type = c("rmd", ".R")) # the following is identical (because of ... and defaults) # but the first is most convenient: style_dir(strict = TRUE) style_dir(style = tidyverse_style, strict = TRUE) style_dir(transformers = tidyverse_style(strict = TRUE)) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.