jshint.vim 437 B

12345678910111213141516171819202122
  1. " Vim compiler file
  2. " Compiler: JSHint
  3. " Maintainer: Doug Kearns <dougkearns@gmail.com>
  4. " Last Change: 2024 Apr 03
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "jshint"
  9. let s:cpo_save = &cpo
  10. set cpo&vim
  11. " CompilerSet makeprg=npx\ jshint\ --verbose
  12. CompilerSet makeprg=jshint\ --verbose
  13. CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m\ (%t%n),
  14. \%-G%.%#
  15. let &cpo = s:cpo_save
  16. unlet s:cpo_save