ale/ale_linters/pug/puglint.vim

11 lines
302 B
VimL
Raw Normal View History

2016-10-07 21:16:29 +00:00
" Author: w0rp - <devw0rp@gmail.com>
" Description: pug-lint for checking Pug/Jade files.
call ale#linter#Define('pug', {
2016-10-07 21:16:29 +00:00
\ 'name': 'puglint',
\ 'executable': 'pug-lint',
\ 'output_stream': 'stderr',
\ 'command': 'pug-lint -r inline %t',
\ 'callback': 'ale#handlers#unix#HandleAsError',
2016-10-07 21:16:29 +00:00
\})