Add a fixer for r based on the styler package (#2401)

* Add styler as a new fixer for R files
* Add to the list of supported tools
* Add documentation
This commit is contained in:
Thibault Vatter
2019-04-23 14:44:26 -04:00
committed by w0rp
parent 893ac34cca
commit ce0b14979e
7 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Before:
call ale#test#SetDirectory('/testplugin/test/fixers')
After:
Restore
call ale#test#RestoreDirectory()
Execute(The styler callback should include custom styler options):
let g:ale_r_styler_options = "a_custom_option"
AssertEqual
\ {
\ 'command': 'Rscript --vanilla -e '
\ . '"suppressPackageStartupMessages(library(styler));'
\ . 'style_file(commandArgs(TRUE), style = '
\ . 'a_custom_option)"'
\ . ' %t',
\ 'read_temporary_file': 1,
\ },
\ ale#fixers#styler#Fix(bufnr(''))