]> git.r.bdr.sh - rbdr/dotfiles/blob - vim/syntax_checkers/javascript/jslint.vim
A whole bunch of new additions to the submodules
[rbdr/dotfiles] / vim / syntax_checkers / javascript / jslint.vim
1 "============================================================================
2 "File: jslint.vim
3 "Description: Javascript syntax checker - using jslint
4 "Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
5 "License: This program is free software. It comes without any warranty,
6 " to the extent permitted by applicable law. You can redistribute
7 " it and/or modify it under the terms of the Do What The Fuck You
8 " Want To Public License, Version 2, as published by Sam Hocevar.
9 " See http://sam.zoy.org/wtfpl/COPYING for more details.
10 "
11 "Tested with jslint 0.1.4.
12 "============================================================================
13 if !exists("g:syntastic_javascript_jslint_conf")
14 let g:syntastic_javascript_jslint_conf = "--white --undef --nomen --regexp --plusplus --bitwise --newcap --sloppy --vars"
15 endif
16
17 function! SyntaxCheckers_javascript_HighlightTerm(error)
18 let unexpected = matchstr(a:error['text'], 'Expected.*and instead saw \'\zs.*\ze\'')
19 if len(unexpected) < 1 | return '' | end
20 return '\V'.split(unexpected, "'")[1]
21 endfunction
22
23 function! SyntaxCheckers_javascript_GetLocList()
24 let makeprg = "jslint " . g:syntastic_javascript_jslint_conf . " " . shellescape(expand('%'))
25 let errorformat='%E %##%n %m,%-Z%.%#Line %l\, Pos %c,%-G%.%#'
26 let errors = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat, 'defaults': {'bufnr': bufnr("")} })
27 call SyntasticHighlightErrors(errors, function('SyntaxCheckers_javascript_HighlightTerm'))
28
29 return errors
30 endfunction
31