1234567891011121314151617181920212223 |
- if exists('g:loaded_syntastic_xhtml_jshint_checker')
- finish
- endif
- let g:loaded_syntastic_xhtml_jshint_checker = 1
- call g:SyntasticRegistry.CreateAndRegisterChecker({
- \ 'filetype': 'xhtml',
- \ 'name': 'jshint',
- \ 'redirect': 'html/jshint'})
|