2018-03-31 10:55:20 -04:00
|
|
|
" Author: Vincent Lequertier <https://github.com/SkySymbol>, Chris Weyl <cweyl@alumni.drew.edu>
|
|
|
|
" Description: This file adds support for checking perl with perl critic
|
|
|
|
|
2018-08-25 12:13:42 -04:00
|
|
|
call ale#Set('perl_perlcritic_executable', 'perlcritic')
|
|
|
|
call ale#Set('perl_perlcritic_profile', '.perlcriticrc')
|
|
|
|
call ale#Set('perl_perlcritic_options', '')
|
|
|
|
call ale#Set('perl_perlcritic_showrules', 0)
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
function! ale_linters#perl#perlcritic#GetProfile(buffer) abort
|
|
|
|
" first see if we've been overridden
|
|
|
|
let l:profile = ale#Var(a:buffer, 'perl_perlcritic_profile')
|
2018-06-14 06:31:12 -04:00
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
if l:profile is? ''
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
" otherwise, iterate upwards to find it
|
|
|
|
return ale#path#FindNearestFile(a:buffer, l:profile)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#perl#perlcritic#GetCommand(buffer) abort
|
|
|
|
let l:critic_verbosity = '%l:%c %m\n'
|
2018-06-14 06:31:12 -04:00
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
if ale#Var(a:buffer, 'perl_perlcritic_showrules')
|
|
|
|
let l:critic_verbosity = '%l:%c %m [%p]\n'
|
|
|
|
endif
|
|
|
|
|
|
|
|
let l:profile = ale_linters#perl#perlcritic#GetProfile(a:buffer)
|
|
|
|
let l:options = ale#Var(a:buffer, 'perl_perlcritic_options')
|
|
|
|
|
2018-08-25 12:13:42 -04:00
|
|
|
return '%e'
|
2018-06-14 06:31:12 -04:00
|
|
|
\ . ' --verbose ' . ale#Escape(l:critic_verbosity)
|
|
|
|
\ . ' --nocolor'
|
|
|
|
\ . (!empty(l:profile) ? ' --profile ' . ale#Escape(l:profile) : '')
|
2018-08-25 12:13:42 -04:00
|
|
|
\ . ale#Pad(l:options)
|
2018-03-31 10:55:20 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
function! ale_linters#perl#perlcritic#Handle(buffer, lines) abort
|
|
|
|
let l:pattern = '\(\d\+\):\(\d\+\) \(.\+\)'
|
|
|
|
let l:output = []
|
|
|
|
|
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
|
|
|
call add(l:output, {
|
|
|
|
\ 'lnum': l:match[1],
|
|
|
|
\ 'col': l:match[2],
|
|
|
|
\ 'text': l:match[3],
|
|
|
|
\ 'type': 'W'
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('perl', {
|
|
|
|
\ 'name': 'perlcritic',
|
|
|
|
\ 'output_stream': 'stdout',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'executable': {b -> ale#Var(b, 'perl_perlcritic_executable')},
|
|
|
|
\ 'command': function('ale_linters#perl#perlcritic#GetCommand'),
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'callback': 'ale_linters#perl#perlcritic#Handle',
|
|
|
|
\})
|