fix missing (s) on rubocop exclusion flag

This commit is contained in:
Justin Powell
2018-10-26 11:30:32 -05:00
parent 7af33637e8
commit 90048ac933
2 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ function! ale#fixers#rubocop#GetCommand(buffer) abort
return ale#handlers#ruby#EscapeExecutable(l:executable, 'rubocop')
\ . (!empty(l:config) ? ' --config ' . ale#Escape(l:config) : '')
\ . (!empty(l:options) ? ' ' . l:options : '')
\ . ' --auto-correct --force-exclusion %t'
\ . ' --auto-correct --force-exclusions %t'
endfunction
function! ale#fixers#rubocop#Fix(buffer) abort