Mixedindentlint is a style checker.

This commit is contained in:
LCD 47 2015-12-10 07:16:06 +02:00
parent ac4541e0e8
commit 48736aa376
2 changed files with 2 additions and 1 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-61' let g:_SYNTASTIC_VERSION = '3.7.0-62'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1

View File

@ -25,6 +25,7 @@ function! SyntaxCheckers_javascript_mixedindentlint_GetLocList() dict
return SyntasticMake({ return SyntasticMake({
\ 'makeprg': makeprg, \ 'makeprg': makeprg,
\ 'errorformat': errorformat, \ 'errorformat': errorformat,
\ 'subtype': 'Style',
\ 'defaults': { 'text': 'Indentation differs from rest of file' }, \ 'defaults': { 'text': 'Indentation differs from rest of file' },
\ 'returns': [0, 1] }) \ 'returns': [0, 1] })
endfunction endfunction