New checker for JavaScript: jscs.
This commit is contained in:
parent
600656abdf
commit
f23ddae1a7
39
syntax_checkers/javascript/jscs.vim
Normal file
39
syntax_checkers/javascript/jscs.vim
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
"============================================================================
|
||||||
|
"File: jscs.vim
|
||||||
|
"Description: Javascript syntax checker - using jscs
|
||||||
|
"Maintainer: LCD 47 <lcd047@gmail.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.
|
||||||
|
"============================================================================
|
||||||
|
|
||||||
|
if exists("g:loaded_syntastic_javascript_jscs_checker")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let g:loaded_syntastic_javascript_jscs_checker = 1
|
||||||
|
|
||||||
|
let s:save_cpo = &cpo
|
||||||
|
set cpo&vim
|
||||||
|
|
||||||
|
runtime! syntax_checkers/java/*.vim
|
||||||
|
|
||||||
|
function! SyntaxCheckers_javascript_jscs_GetLocList() dict
|
||||||
|
let makeprg = self.makeprgBuild({ 'post_args': '--no-colors --reporter checkstyle' })
|
||||||
|
let errorformat = '%f:%t:%l:%c:%m'
|
||||||
|
return SyntasticMake({
|
||||||
|
\ 'makeprg': makeprg,
|
||||||
|
\ 'errorformat': errorformat,
|
||||||
|
\ 'subtype': 'Style',
|
||||||
|
\ 'preprocess': 'SyntaxCheckers_java_checkstyle_Preprocess' })
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
||||||
|
\ 'filetype': 'javascript',
|
||||||
|
\ 'name': 'jscs'})
|
||||||
|
|
||||||
|
let &cpo = s:save_cpo
|
||||||
|
unlet s:save_cpo
|
||||||
|
|
||||||
|
" vim: set et sts=4 sw=4:
|
Loading…
x
Reference in New Issue
Block a user