You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
736 B
VimL
22 lines
736 B
VimL
function! ale#fixers#rubocop#GetCommand(buffer) abort
|
|
let l:executable = ale#handlers#rubocop#GetExecutable(a:buffer)
|
|
let l:exec_args = l:executable =~? 'bundle$'
|
|
\ ? ' exec rubocop'
|
|
\ : ''
|
|
let l:config = ale#path#FindNearestFile(a:buffer, '.rubocop.yml')
|
|
let l:options = ale#Var(a:buffer, 'ruby_rubocop_options')
|
|
|
|
return ale#Escape(l:executable) . l:exec_args
|
|
\ . (!empty(l:config) ? ' --config ' . ale#Escape(l:config) : '')
|
|
\ . (!empty(l:options) ? ' ' . l:options : '')
|
|
\ . ' --auto-correct %t'
|
|
|
|
endfunction
|
|
|
|
function! ale#fixers#rubocop#Fix(buffer) abort
|
|
return {
|
|
\ 'command': ale#fixers#rubocop#GetCommand(a:buffer),
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
endfunction
|