ale/ale_linters/ruby/rubocop.vim

44 lines
1.1 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
2016-09-15 07:37:53 +00:00
function! ale_linters#ruby#rubocop#Handle(buffer, lines)
" Matches patterns line the following:
"
2016-09-15 07:39:26 +00:00
" <path>/_:47:14: 83:29: C: Prefer single-quoted strings when you don't
" 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:line in a:lines
let l:match = matchlist(l:line, l:pattern)
2016-09-15 07:37:53 +00:00
if len(l:match) == 0
continue
endif
let l:text = l:match[4]
let l:type = l:match[3]
2016-09-15 07:37:53 +00:00
" vcol is Needed to indicate that the column is a character.
call add(l:output, {
2016-09-15 07:37:53 +00:00
\ 'bufnr': a:buffer,
\ 'lnum': l:match[1] + 0,
\ 'vcol': 0,
\ 'col': l:match[2] + 0,
\ 'text': l:text,
\ 'type': l:type ==# 'C' ? 'E' : 'W',
2016-09-15 07:37:53 +00:00
\ 'nr': -1,
\})
endfor
return l:output
2016-09-15 07:37:53 +00:00
endfunction
call ale#linter#Define('ruby', {
\ 'name': 'rubocop',
2016-09-15 07:37:53 +00:00
\ 'executable': 'rubocop',
\ 'command': 'rubocop --format emacs --stdin _',
\ 'callback': 'ale_linters#ruby#rubocop#Handle',
\})