I was using Syntastic till install YouCompleteMe in terminal vim. So, the thing is that YouCompleteMe doesn't let Syntastic check for errors, but I need both plugins.
YouCompleteMe has some error checkers, but I didn't find a way to make it work to lint Javascript errors.
How can I fix it?
.vimrc for Syntastic
let g:syntastic_always_populate_loc_list = 0
let g:syntastic_auto_loc_list = 2
let g:syntastic_loc_list_height = 8
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 1
let g:syntastic_aggregate_errors = 1
let g:syntastic_id_checkers = 1
let g:syntastic_error_symbol = "✗"
let g:syntastic_warning_symbol = "⚠"
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_javascript_checkers = ['jslint', 'jsonlint', 'gjslint']
let g:syntastic_html_tidy_exec = 'tidy5'
.vimrc for YCM:
" YouCompleteMe and UltiSnips compatibility, with the helper of supertab
let g:ycm_key_list_select_completion = ['<A-¶>', '<A-Space>', '<Down>']
let g:ycm_key_list_previous_completion = ['<A-§>', '<A-π>', '<Up>']
" You Complete Me Options
let g:ycm_show_diagnostics_ui = 0
let g:ycm_enable_diagnostic_highlighting = 0
let g:ycm_enable_diagnostic_signs = 0
let g:ycm_show_diagnostics_ui = 0
let g:ycm_open_loclist_on_ycm_diags = 0
let g:ycm_complete_in_comments = 0
let g:ycm_complete_in_strings = 0
let g:ycm_collect_identifiers_from_comments_and_strings = 0
let g:ycm_collect_identifiers_from_tags_files = 1
:SyntasticInfo
output
> Syntastic version: 3.7.0-31 (Vim 704, Darwin)
> Info for filetype: javascript
> Global mode: active
> Filetype javascript is active
> The current file will be checked automatically
> Available checkers: -
> Currently enabled checkers: -
I don't know why available and enable checkers has gone? They were there and were working before YCM intallation!