summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-05-18 09:19:23 +0100
committerGitHub <noreply@github.com>2017-05-18 09:19:23 +0100
commit2fd4db91ceedaadcd83a94312449c05350abaa6c (patch)
treef8e84e77357a344f9a4d3149b64fab4395ba309e /ale_linters
parentf7fc54262dbcdf14732fcf8f2603f0068b3e642c (diff)
parent3f926de76b74faf534c6e4c79cf3f28e96848b90 (diff)
downloadale-2fd4db91ceedaadcd83a94312449c05350abaa6c.zip
Merge pull request #561 from meunierd/override-rubocop-executable
Allow overriding rubocop executable.
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/ruby/rubocop.vim21
1 files changed, 19 insertions, 2 deletions
diff --git a/ale_linters/ruby/rubocop.vim b/ale_linters/ruby/rubocop.vim
index 95cb5516..786e1af6 100644
--- a/ale_linters/ruby/rubocop.vim
+++ b/ale_linters/ruby/rubocop.vim
@@ -25,20 +25,37 @@ function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
endfunction
function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
- return 'rubocop --format emacs --force-exclusion '
+ let l:unescaped = ale#Var(a:buffer, 'ruby_rubocop_executable')
+ let l:executable = ale#Escape(l:unescaped)
+ if l:unescaped =~? 'bundle$'
+ let l:executable = l:executable . ' exec rubocop'
+ endif
+ return l:executable
+ \ . ' --format emacs --force-exclusion '
\ . ale#Var(a:buffer, 'ruby_rubocop_options')
\ . ' --stdin ' . bufname(a:buffer)
endfunction
+function! ale_linters#ruby#rubocop#GetExecutable(buffer) abort
+ let l:executable = ale#Var(a:buffer, 'ruby_rubocop_executable')
+ if executable(l:executable)
+ return l:executable
+ endif
+endfunction
+
" Set this option to change Rubocop options.
if !exists('g:ale_ruby_rubocop_options')
" let g:ale_ruby_rubocop_options = '--lint'
let g:ale_ruby_rubocop_options = ''
endif
+if !exists('g:ale_ruby_rubocop_executable')
+ let g:ale_ruby_rubocop_executable = 'rubocop'
+endif
+
call ale#linter#Define('ruby', {
\ 'name': 'rubocop',
-\ 'executable': 'rubocop',
+\ 'executable_callback': 'ale_linters#ruby#rubocop#GetExecutable',
\ 'command_callback': 'ale_linters#ruby#rubocop#GetCommand',
\ 'callback': 'ale_linters#ruby#rubocop#Handle',
\})