ale/ale_linters/yaml/yamllint.vim

43 lines
1.3 KiB
VimL
Raw Normal View History

2016-10-03 19:49:02 +00:00
" Author: KabbAmine <amine.kabb@gmail.com>
function! ale_linters#yaml#yamllint#Handle(buffer, lines)
" Matches patterns line the following:
" something.yaml:1:1: [warning] missing document start "---" (document-start)
" something.yml:2:1: [error] syntax error: expected the node content, but found '<stream end>'
let l:pattern = '^.*:\(\d\+\):\(\d\+\): \[\(error\|warning\)\] \(.\+\)$'
let l:output = []
2016-10-03 19:49:02 +00:00
for l:line in a:lines
let l:match = matchlist(l:line, l:pattern)
2016-10-03 19:49:02 +00:00
if len(l:match) == 0
continue
endif
let l:line = l:match[1] + 0
let l:col = l:match[2] + 0
let l:type = l:match[3]
let l:text = l:match[4]
2016-10-03 19:49:02 +00:00
" vcol is Needed to indicate that the column is a character.
call add(l:output, {
2016-10-03 19:49:02 +00:00
\ 'bufnr': a:buffer,
\ 'lnum': l:line,
2016-10-03 19:49:02 +00:00
\ 'vcol': 0,
\ 'col': l:col,
\ 'text': l:text,
2016-10-11 14:42:50 +00:00
\ 'type': l:type ==# 'error' ? 'E' : 'W',
2016-10-03 19:49:02 +00:00
\ 'nr': -1,
\})
endfor
return l:output
2016-10-03 19:49:02 +00:00
endfunction
call ale#linter#Define('yaml', {
2016-10-03 19:49:02 +00:00
\ 'name': 'yamllint',
\ 'executable': 'yamllint',
\ 'command': g:ale#util#stdin_wrapper . ' .yml yamllint -f parsable',
\ 'callback': 'ale_linters#yaml#yamllint#Handle',
\})