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_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
|
2014-02-13 10:38:47 -05:00
|
|
|
if !exists('g:syntastic_jshint_exec')
|
|
|
|
let g:syntastic_jshint_exec = self.getExec()
|
|
|
|
endif
|
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
|
2014-02-13 10:38:47 -05:00
|
|
|
let exe = syntastic#util#shexpand(g:syntastic_jshint_exec)
|
2014-01-28 14:44:44 -05:00
|
|
|
if !exists('s:jshint_new')
|
|
|
|
let s:jshint_new =
|
2014-02-13 10:38:47 -05:00
|
|
|
\ syntastic#util#versionIsAtLeast(syntastic#util#getVersion(exe . ' --version'), [1, 1])
|
2014-01-28 14:44:44 -05:00
|
|
|
endif
|
|
|
|
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-02-13 10:38:47 -05:00
|
|
|
\ 'exe': exe,
|
2014-01-28 18:12:42 -05:00
|
|
|
\ 'args': (g:syntastic_javascript_jshint_conf != '' ? '--config ' . g:syntastic_javascript_jshint_conf : ''),
|
2014-01-28 14:44:44 -05:00
|
|
|
\ 'args_after': (s:jshint_new ? '--verbose ' : '') })
|
2013-01-20 07:27:19 -05:00
|
|
|
|
2014-01-28 14:44:44 -05:00
|
|
|
let errorformat = s: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-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:
|