Kirill Müller
Kirill Müller
printing details on all shell commands executed, and the current working directory, so that failing steps can be replicated manually. This comes from the frustration of having spent way too...
via new `rim run` command? ``` $ R --version R version 4.1.2 (2021-11-01) -- "Bird Hippie" Copyright (C) 2021 The R Foundation for Statistical Computing Platform: aarch64-apple-darwin20 (64-bit) R is...
This is crucial for #558. Because we use mostly recursive calls, and effectively each function can call each other function, I suspect it is difficult to see where exactly styler...
An attempt at #744.
via furrr. Closes #277. Closes #617 (=supersedes). *** Things to consider: * check how suggested and imported CRAN packages use styler and what it means for parallelisation. * check impact...
```r # Good f1
If I style the same dirty file over and over again, the cache doesn't seem to have an effect. Can you confirm? How to fix?
**UPDATE:** Alignment detection was implemented for function calls: https://styler.r-lib.org/articles/detect-alignment.html - [x] multiple named arguments in function calls (https://github.com/r-lib/testthat/pull/663#discussion_r146549784) - [ ] multiple unnamed arguments in single-line function calls (https://github.com/r-lib/testthat/pull/663/commits/0f61d06bf0e3bd382831ffbe6b2bf8f13cff0bbc#diff-3f2ca9f70d2f3617419c503141c9e6fbR6) -...
```r # Before: data %>% mutate(...) %>% select(...) -> result # After: result % mutate(...) %>% select(...) ``` Can we do this easily?
https://coala.io/#/home There is already a bear that seems to use _formatR_: https://github.com/coala/coala-bears/blob/master/bears/r/FormatRBear.py .