summaryrefslogtreecommitdiff
path: root/ale_linters/pug/puglint.vim
blob: 4ded7eade04c686ab28db819f538018e572d61ee (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': 'pug-lint -r inline %t',
\   'callback': 'ale#handlers#HandleUnixFormatAsError',
\})