ale/ale_linters/perl/perlcritic.vim

25 lines
718 B
VimL
Raw Normal View History

2016-10-09 15:31:03 +00:00
" Author: Vincent Lequertier <https://github.com/SkySymbol>
" Description: This file adds support for checking perl with perl critic
function! ale_linters#perl#perlcritic#Handle(buffer, lines) abort
let l:pattern = '\(.\+\) at \(.\+\) line \(\d\+\)'
let l:output = []
2016-10-09 15:31:03 +00:00
for l:match in ale#util#GetMatches(a:lines, l:pattern)
call add(l:output, {
\ 'text': l:match[1],
\ 'lnum': l:match[3],
2016-10-09 15:31:03 +00:00
\})
endfor
return l:output
2016-10-09 15:31:03 +00:00
endfunction
call ale#linter#Define('perl', {
2016-10-09 15:31:03 +00:00
\ 'name': 'perlcritic',
\ 'executable': 'perlcritic',
\ 'output_stream': 'stdout',
2016-10-09 15:31:03 +00:00
\ 'command': 'perlcritic --verbose 3 --nocolor',
\ 'callback': 'ale_linters#perl#perlcritic#Handle',
\})