vim-lint

Lint plugin for vim
git clone https://git.ce9e.org/vim-lint.git

commit
fdaa95ec9530b0a713e598f25eaa21f3dfd82034
parent
c6ca1b8961ae3a83e0dcb2b92b9f4b4c96530f43
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2021-11-06 19:22
use unix forman for jshint

Diffstat

M ftplugin/javascript_jshint.vim 4 ++--

1 files changed, 2 insertions, 2 deletions


diff --git a/ftplugin/javascript_jshint.vim b/ftplugin/javascript_jshint.vim

@@ -1,4 +1,4 @@
    1     1 if executable('jshint') && !exists('b:lint_prg')
    2    -1     let b:lint_prg = 'jshint'
    3    -1     let b:lint_format = '%f: line %l\, col %c\, %m'
   -1     2     let b:lint_prg = 'jshint --reporter unix'
   -1     3     let b:lint_format = '%f:%l:%c: %m'
    4     4 endif