stylelint.vim (531B)
1 " Vim compiler file 2 " Compiler: Stylelint 3 " Maintainer: Doug Kearns <dougkearns@gmail.com> 4 " Last Change: 2024 Apr 03 5 6 if exists("current_compiler") 7 finish 8 endif 9 let current_compiler = "stylelint" 10 11 let s:cpo_save = &cpo 12 set cpo&vim 13 14 " CompilerSet makeprg=npx\ stylelint\ --formatter\ compact 15 16 CompilerSet makeprg=stylelint\ --formatter\ compact 17 CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ -\ %m, 18 \%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ -\ %m, 19 \%-G%.%# 20 21 let &cpo = s:cpo_save 22 unlet s:cpo_save