2011-12-11 17:54:33 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: jshint.vim
|
|
|
|
"Description: Javascript syntax checker - using jshint
|
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"============================================================================
|
2013-03-18 05:49:00 -04:00
|
|
|
|
2013-08-12 10:54:57 -04:00
|
|
|
if exists('g:loaded_syntastic_javascript_jshint_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_javascript_jshint_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-08-12 10:54:57 -04:00
|
|
|
if !exists('g:syntastic_jshint_exec')
|
|
|
|
let g:syntastic_jshint_exec = 'jshint'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !exists('g:syntastic_javascript_jshint_conf')
|
|
|
|
let g:syntastic_javascript_jshint_conf = ''
|
2011-12-11 17:54:33 -05:00
|
|
|
endif
|
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_javascript_jshint_IsAvailable() dict
|
2013-08-12 10:54:57 -04:00
|
|
|
return executable(expand(g:syntastic_jshint_exec))
|
2013-01-27 15:08:30 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_javascript_jshint_GetLocList() dict
|
2013-03-26 15:40:20 -04:00
|
|
|
let jshint_new = s:JshintNew()
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2013-08-12 10:54:57 -04:00
|
|
|
\ 'exe': expand(g:syntastic_jshint_exec),
|
2013-11-01 05:51:47 -04:00
|
|
|
\ 'post_args': (jshint_new ? ' --verbose ' : '') . s:Args() })
|
2013-01-20 07:27:19 -05:00
|
|
|
|
2013-03-26 15:40:20 -04:00
|
|
|
let errorformat = jshint_new ?
|
2013-11-07 03:22:56 -05:00
|
|
|
\ '%A%f: line %l\, col %v\, %m \(%t%*\d\)' :
|
2013-11-06 14:06:05 -05:00
|
|
|
\ '%E%f: line %l\, col %v\, %m'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'bufnr': bufnr('')} })
|
2011-12-11 17:54:33 -05:00
|
|
|
endfunction
|
2013-01-20 07:27:19 -05:00
|
|
|
|
2013-11-01 05:51:04 -04:00
|
|
|
function! s:JshintNew()
|
2013-09-24 01:39:07 -04:00
|
|
|
return syntastic#util#versionIsAtLeast(syntastic#util#getVersion(expand(g:syntastic_jshint_exec) . ' --version'), [1, 1])
|
2013-03-26 15:40:20 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-11-01 05:51:04 -04:00
|
|
|
function! s:Args()
|
2013-01-20 07:27:19 -05:00
|
|
|
" node-jshint uses .jshintrc as config unless --config arg is present
|
|
|
|
return !empty(g:syntastic_javascript_jshint_conf) ? ' --config ' . g:syntastic_javascript_jshint_conf : ''
|
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'javascript',
|
|
|
|
\ 'name': 'jshint'})
|
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|