Closed matt-dray closed 4 years ago
Use {styler} for consistency of input: https://styler.r-lib.org/
So style_text("variable<-1") will output "variable <- 1".
style_text("variable<-1")
This is useful for the step that involves splitting out the R symbols (e.g. strsplit() over spaces).
strsplit()
This isn't needed now that {lintr} parses the expression. Closed with #3.
Use {styler} for consistency of input: https://styler.r-lib.org/
So
style_text("variable<-1")
will output "variable <- 1".This is useful for the step that involves splitting out the R symbols (e.g.
strsplit()
over spaces).