Releases: jabenninghoff/rdev
0.2.0
- installing rdev will now automatically install preferred development tools as a 'meta-package' (like tidyverse), including: styler, lintr, rcmdcheck, renv, miniUI (for RStudio Addin support), devtools, and rmarkdown
0.1.2
- minor updates to package and site (https://jabenninghoff.github.io/rdev/)
0.1.1
- maintenance release
Updates
-
ci()
: updated to match my preferred GitHub workflow:use_github_action_check_standard()
with--as-cran
removed -
documentation updates for all functions (style, links)
0.1.0
Initial GitHub release
New Features
-
./tools/setup-r
: shell script to install development packages to site repository on macOS + Homebrew -
check_renv()
: convenience function that runsrenv
status()
,clean()
, and optionallyupdate()
(on by default). -
style_all()
: style all.R
and.Rmd
files in a project usingstyler
-
lint_all()
: lint all.R
and.Rmd
files in a project usinglintr
-
sort_file()
: sort a file using Rsort()
, similar to the unixsort
command -
sort_rbuildignore()
: sort the.Rbuildignore
file usingsort_file()
, because unsorted is annoying -
ci()
: run continuous integration tests locally: lint, R CMD check, and style (off by default).