VSCode抱怨html文件上缺少DOCTYPE。 Meteor构建系统会自动添加文件类型并导致构建错误。如何让vscode忽略html文件中缺少的doctype?
我得到的错误。
Doctype must be declared first.
答案 0 :(得分:5)
您需要在根文件夹中创建.htmlhintrc
您可以转到http://htmlhint.com/并设置适合您的规则并创建.htmlhintrc
答案 1 :(得分:3)
转到“ VScode首选项”>“设置”>“ HTML提示”并添加以下内容:
“ htmlhint.options”:{ “ doctype-first”:false }