2018-03-31 10:55:20 -04:00
|
|
|
" Author: Alexander Olofsson <alexander.olofsson@liu.se>, Robert Flechtner <flechtner@chemmedia.de>
|
|
|
|
" Description: puppet-lint for puppet files
|
|
|
|
|
2018-08-25 12:13:42 -04:00
|
|
|
call ale#Set('puppet_puppetlint_executable', 'puppet-lint')
|
|
|
|
call ale#Set('puppet_puppetlint_options', '--no-autoloader_layout-check')
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
function! ale_linters#puppet#puppetlint#GetCommand(buffer) abort
|
2018-08-25 12:13:42 -04:00
|
|
|
return '%e' . ale#Pad(ale#Var(a:buffer, 'puppet_puppetlint_options'))
|
2018-03-31 10:55:20 -04:00
|
|
|
\ . ' --log-format "-:%{line}:%{column}: %{kind}: [%{check}] %{message}"'
|
|
|
|
\ . ' %t'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('puppet', {
|
|
|
|
\ 'name': 'puppetlint',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'executable': {b -> ale#Var(b, 'puppet_puppetlint_executable')},
|
|
|
|
\ 'command': function('ale_linters#puppet#puppetlint#GetCommand'),
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'callback': 'ale#handlers#gcc#HandleGCCFormat',
|
|
|
|
\})
|