2011-12-16 14:18:04 -02:00
|
|
|
"============================================================================
|
|
|
|
"File: jsonlint.vim
|
|
|
|
"Description: JSON syntax checker - using jsonlint
|
2011-12-18 11:06:09 -02:00
|
|
|
"Maintainer: Miller Medeiros <contact at millermedeiros dot com>
|
2011-12-16 14:18:04 -02: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.
|
|
|
|
"============================================================================
|
|
|
|
|
|
|
|
function! SyntaxCheckers_json_GetLocList()
|
2013-01-20 12:27:19 +00:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': 'jsonlint',
|
|
|
|
\ 'post_args': '--compact',
|
|
|
|
\ 'subchecker': 'jsonlint' })
|
2011-12-16 14:18:04 -02:00
|
|
|
let errorformat = '%ELine %l:%c,%Z\\s%#Reason: %m,%C%.%#,%f: line %l\, col %c\, %m,%-G%.%#'
|
|
|
|
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat, 'defaults': {'bufnr': bufnr('')} })
|
|
|
|
endfunction
|