mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-01 17:13:30 +08:00
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:
21
test/fixers/test_styler_fixer_callback.vader
Normal file
21
test/fixers/test_styler_fixer_callback.vader
Normal 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(''))
|
||||
Reference in New Issue
Block a user