1 2 3 4 5 6 7 8 9 10 11 12 13
" vim: ts=4 sw=4 et function! neomake#makers#ft#pug#EnabledMakers() abort return ['puglint'] endfunction function! neomake#makers#ft#pug#puglint() abort return { \ 'exe': 'pug-lint', \ 'args': ['--reporter', 'inline'], \ 'errorformat': '%f:%l:%c %m' \ } endfunction