Rubocop fixer now uses g:ale_ruby_rubocop_options (#841)

* Rubocop fixer now uses g:ale_ruby_rubocop_options

* Adds spec
This commit is contained in:
Miguel Palhas
2017-08-10 14:52:54 +01:00
committed by w0rp
parent 9ae2df1958
commit 0c26e8945c
2 changed files with 17 additions and 3 deletions

View File

@@ -7,7 +7,8 @@ function! ale#fixers#rubocop#GetCommand(buffer) abort
return ale#Escape(l:executable) . l:exec_args
\ . (!empty(l:config) ? ' --config ' . ale#Escape(l:config) : '')
\ . ' --auto-correct %t'
\ . ' --auto-correct %t '
\ . ale#Var(a:buffer, 'ruby_rubocop_options')
endfunction