summaryrefslogtreecommitdiff
path: root/ale_linters/puppet/puppetlint.vim
blob: 05745cfe5b090879476ee8f5b2af9dc8be906af8 (plain)
1
2
3
4
5
6
7
8
9
10
" Author: Alexander Olofsson <alexander.olofsson@liu.se>

call ale#linter#Define('puppet', {
\   'name': 'puppetlint',
\   'executable': 'puppet-lint',
\   'command': 'puppet-lint --no-autoloader_layout-check'
\   .   ' --log-format "-:%{line}:%{column}: %{kind}: [%{check}] %{message}"'
\   .   ' %t',
\   'callback': 'ale#handlers#HandleGCCFormat',
\})