blob: 7d57acbdf4165aea59596f70c81eab7df9e7bbf5 [file] [log] [blame]
Bram Moolenaar388a5d42020-05-26 21:20:45 +02001" Vim compiler file
2" Compiler: ESLint for JavaScript
3" Maintainer: Romain Lafourcade <romainlafourcade@gmail.com>
Bram Moolenaar207f0092020-08-30 17:20:20 +02004" Last Change: 2020 August 20
Bram Moolenaar388a5d42020-05-26 21:20:45 +02005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "eslint"
10
11if exists(":CompilerSet") != 2
12 command -nargs=* CompilerSet setlocal <args>
13endif
14
Bram Moolenaar207f0092020-08-30 17:20:20 +020015CompilerSet makeprg=npx\ eslint\ --format\ compact
Bram Moolenaar388a5d42020-05-26 21:20:45 +020016CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%#