e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
31 lines
1,018 B
VimL
31 lines
1,018 B
VimL
" Author: ynonp - https://github.com/ynonp, Eddie Lebow https://github.com/elebow
|
|
" Description: RuboCop, a code style analyzer for Ruby files
|
|
|
|
call ale#Set('ruby_rubocop_executable', 'rubocop')
|
|
call ale#Set('ruby_rubocop_options', '')
|
|
|
|
function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
|
|
let l:executable = ale#Var(a:buffer, 'ruby_rubocop_executable')
|
|
|
|
return ale#ruby#EscapeExecutable(l:executable, 'rubocop')
|
|
\ . ' --format json --force-exclusion '
|
|
\ . ale#Var(a:buffer, 'ruby_rubocop_options')
|
|
\ . ' --stdin %s'
|
|
endfunction
|
|
|
|
function! ale_linters#ruby#rubocop#GetType(severity) abort
|
|
if a:severity is? 'convention'
|
|
\|| a:severity is? 'warning'
|
|
\|| a:severity is? 'refactor'
|
|
return 'W'
|
|
endif
|
|
|
|
return 'E'
|
|
endfunction
|
|
|
|
call ale#linter#Define('ruby', {
|
|
\ 'name': 'rubocop',
|
|
\ 'executable': {b -> ale#Var(b, 'ruby_rubocop_executable')},
|
|
\ 'command': function('ale_linters#ruby#rubocop#GetCommand'),
|
|
\ 'callback': 'ale#ruby#HandleRubocopOutput',
|
|
\})
|