How to disable parsing of .html file with vim

Do you know how to check for invalid syntax in an HTML file? I use ember.js with the vim plugin syntax plugin and it generates warnings that confuse me.

+5
source share
1 answer

This code is invalid because <script>it must not contain any other HTML tag.

:help syntastic shows how to disable syntax checking for a given file type:

let g:syntastic_mode_map={ 'mode': 'active',
                     \ 'active_filetypes': [],
                     \ 'passive_filetypes': ['html'] }
+13
source

All Articles