ale/ale_linters/ruby/rubocop.vim

52 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
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: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
call add(l:output, {
2016-09-15 07:37:53 +00:00
\ 'bufnr': a:buffer,
\ '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
function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
2017-04-15 11:52:08 +00:00
return 'rubocop --format emacs --force-exclusion '
\ . ale#Var(a:buffer, 'ruby_rubocop_options')
2017-04-15 11:52:08 +00:00
\ . ' --stdin ' . bufname(a:buffer)
endfunction
2016-12-01 17:28:27 +00:00
" 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
call ale#linter#Define('ruby', {
\ 'name': 'rubocop',
2016-09-15 07:37:53 +00:00
\ 'executable': 'rubocop',
\ 'command_callback': 'ale_linters#ruby#rubocop#GetCommand',
2016-09-15 07:37:53 +00:00
\ 'callback': 'ale_linters#ruby#rubocop#Handle',
\})