ale/ale_linters/ruby/rubocop.vim

45 lines
1.4 KiB
VimL
Raw Normal View History

" Author: ynonp - https://github.com/ynonp
2016-10-03 18:55:55 +00:00
" Description: rubocop for Ruby files
2017-05-18 08:22:34 +00:00
function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
let l:executable = ale#handlers#rubocop#GetExecutable(a:buffer)
2017-05-18 08:22:34 +00:00
let l:exec_args = l:executable =~? 'bundle$'
\ ? ' exec rubocop'
\ : ''
return ale#Escape(l:executable) . l:exec_args
\ . ' --format emacs --force-exclusion '
\ . ale#Var(a:buffer, 'ruby_rubocop_options')
\ . ' --stdin ' . bufname(a:buffer)
endfunction
function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
2016-09-15 07:37:53 +00:00
" Matches patterns line the following:
"
2017-02-06 06:13:13 +00:00
" <path>:83:29: C: Prefer single-quoted strings when you don't
2016-09-15 07:39:26 +00:00
" need string interpolation or special symbols.
let l:pattern = '\v:(\d+):(\d+): (.): (.+)'
let l:output = []
2016-09-15 07:37:53 +00:00
for l:match in ale#util#GetMatches(a:lines, l:pattern)
let l:text = l:match[4]
let l:type = l:match[3]
2016-09-15 07:37:53 +00:00
call add(l:output, {
2016-09-15 07:37:53 +00:00
\ 'lnum': l:match[1] + 0,
\ 'col': l:match[2] + 0,
\ 'text': l:text,
\ 'type': index(['F', 'E'], l:type) != -1 ? 'E' : 'W',
2016-09-15 07:37:53 +00:00
\})
endfor
return l:output
2016-09-15 07:37:53 +00:00
endfunction
call ale#linter#Define('ruby', {
\ 'name': 'rubocop',
\ 'executable_callback': 'ale#handlers#rubocop#GetExecutable',
\ 'command_callback': 'ale_linters#ruby#rubocop#GetCommand',
2016-09-15 07:37:53 +00:00
\ 'callback': 'ale_linters#ruby#rubocop#Handle',
\})