comparison runtime/compiler/eslint.vim @ 20552:74e3316c1d5a

Update runtime files Commit: https://github.com/vim/vim/commit/388a5d4f20b4b64341d1604aa238cab85827b892 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 26 21:20:45 2020 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 May 2020 21:30:04 +0200
parents
children bbca88cd13d5
comparison
equal deleted inserted replaced
20551:f1b23a9643fe 20552:74e3316c1d5a
1 " Vim compiler file
2 " Compiler: ESLint for JavaScript
3 " Maintainer: Romain Lafourcade <romainlafourcade@gmail.com>
4 " Last Change: 2020 May 17
5
6 if exists("current_compiler")
7 finish
8 endif
9 let current_compiler = "eslint"
10
11 if exists(":CompilerSet") != 2
12 command -nargs=* CompilerSet setlocal <args>
13 endif
14
15 CompilerSet makeprg=eslint\ --format\ compact
16 CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m,%-G%.%#