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
|
|
|
|
2014-10-24 08:55:47 -04:00
|
|
|
if !exists('g:syntastic_javascript_jshint_sort')
|
|
|
|
let g:syntastic_javascript_jshint_sort = 1
|
|
|
|
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-06-24 12:02:42 -04:00
|
|
|
call syntastic#log#deprecationWarn('jshint_exec', 'javascript_jshint_exec')
|
|
|
|
if !executable(self.getExec())
|
2014-03-25 13:59:50 -04:00
|
|
|
return 0
|
|
|
|
endif
|
2014-10-06 15:15:44 -04:00
|
|
|
|
2015-01-23 04:39:42 -05:00
|
|
|
let ver = self.getVersion()
|
|
|
|
let s:jshint_new = syntastic#util#versionIsAtLeast(ver, [1, 1])
|
2014-10-06 15:15:44 -04:00
|
|
|
|
2015-01-23 04:39:42 -05:00
|
|
|
return syntastic#util#versionIsAtLeast(ver, [1])
|
2013-01-27 15:08:30 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_javascript_jshint_GetLocList() dict
|
2014-06-24 12:02:42 -04:00
|
|
|
call syntastic#log#deprecationWarn('javascript_jshint_conf', 'javascript_jshint_args',
|
|
|
|
\ "'--config ' . syntastic#util#shexpand(OLD_VAR)")
|
|
|
|
|
|
|
|
let makeprg = self.makeprgBuild({ '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,
|
2014-02-25 19:20:06 -05:00
|
|
|
\ 'defaults': {'bufnr': bufnr('')},
|
|
|
|
\ 'returns': [0, 2] })
|
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
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|