禁用文件的 syntasic html/tidy 检查器

Disable syntasic html/tidy checker for a file

有没有办法为某个文件禁用 syntastic 的 html/tidy 插件?

我有一个车把模板,其中包含一个空的 <tbody></tbody> 标记作为占位符,但我一直收到错误消息 trimming empty <tbody> [html/tidy]

有没有办法禁用此特定规则,或者只禁用此特定文件的 html/tidy 插件?

试着把它放在你的 .vimrc 中

let g:syntastic_html_tidy_ignore_errors=[" proprietary attribute " ,"trimming empty <", "unescaped &" , "lacks \"action", "is not recognized!", "discarding unexpected"]

这解决了不止一个问题,但我认为它会有所帮助。有关此内容的更多信息 here

我 运行 参与其中 .hbs.html 为节点项目制作模板。将此添加到我的 .vimrc 帮助:

let syntastic_mode_map = { 'passive_filetypes': ['html'] }

此处有更多选项https://github.com/scrooloose/syntastic/issues/240

此外,如果您只想关闭 html 整洁的警告:

let g:syntastic_html_tidy_quiet_messages = { "level" : "warnings" }

我发现这是编辑 Twig 模板的受欢迎设置。

当然要了解更多信息,请在 vim:

:h syntastic-checkers