Checker gjslint: allow users to override flag "--nodebug_indentation".

This commit is contained in:
LCD 47 2016-04-13 20:51:39 +03:00
parent bbf1f3570a
commit 40b1295937
2 changed files with 3 additions and 2 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START lockvar! g:_SYNTASTIC_START
endif endif
let g:_SYNTASTIC_VERSION = '3.7.0-118' let g:_SYNTASTIC_VERSION = '3.7.0-119'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1

View File

@ -21,7 +21,8 @@ function! SyntaxCheckers_javascript_gjslint_GetLocList() dict
call syntastic#log#deprecationWarn('javascript_gjslint_conf', 'javascript_gjslint_args') call syntastic#log#deprecationWarn('javascript_gjslint_conf', 'javascript_gjslint_args')
let makeprg = self.makeprgBuild({ let makeprg = self.makeprgBuild({
\ 'args_after': '--nosummary --unix_mode --nodebug_indentation --nobeep' }) \ 'args': '--nodebug_indentation',
\ 'args_after': '--nosummary --unix_mode --nobeep' })
let errorformat = let errorformat =
\ "%f:%l:(New Error -%\\?\%n) %m," . \ "%f:%l:(New Error -%\\?\%n) %m," .