2011-12-16 11:18:04 -05:00
|
|
|
"============================================================================
|
2013-04-16 03:22:15 -04:00
|
|
|
"File: jsonlint.vim
|
|
|
|
"Description: JSON syntax checker - using jsonlint
|
|
|
|
"Maintainer: Miller Medeiros <contact at millermedeiros dot com>
|
2011-12-16 11:18:04 -05:00
|
|
|
"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-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_json_jsonlint_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_json_jsonlint_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_json_jsonlint_GetLocList() dict
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({ 'post_args': '--compact' })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%ELine %l:%c,'.
|
|
|
|
\ '%Z\\s%#Reason: %m,'.
|
|
|
|
\ '%C%.%#,'.
|
|
|
|
\ '%f: line %l\, col %c\, %m,'.
|
|
|
|
\ '%-G%.%#'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'bufnr': bufnr('')} })
|
2011-12-16 11:18:04 -05:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'json',
|
|
|
|
\ 'name': 'jsonlint'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|