summaryrefslogtreecommitdiff
path: root/ale_linters/pug/puglint.vim
blob: 338cb05f69678c7aa78597888575818561d1c3be (plain)
1
2
3
4
5
6
7
8
9
10
" Author: w0rp - <devw0rp@gmail.com>
" Description: pug-lint for checking Pug/Jade files.

call ale#linter#Define('pug', {
\   'name': 'puglint',
\   'executable': 'pug-lint',
\   'output_stream': 'stderr',
\   'command': g:ale#util#stdin_wrapper . ' .pug pug-lint -r inline',
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})