1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
" vim: ts=4 sw=4 et function! neomake#makers#ft#stylus#EnabledMakers() abort return ['stylint'] endfunction function! neomake#makers#ft#stylus#stylint() abort return { \ 'errorformat': \ '%WWarning: %m,' . \ '%EError: %m,' . \ '%-Csee file: %f for the original selector,' . \ '%CFile: %f,' . \ '%ZLine: %l:%.%#' \ } endfunction