gpt4 book ai didi

visual-studio-code - Meteor typescript 提示 vscode 中缺少 doctype

转载 作者:行者123 更新时间:2023-12-03 23:14:58 25 4
gpt4 key购买 nike

VSCode 提示 html 文件中缺少 DOCTYPE。 Meteor 构建系统会自动添加文件类型并导致构建错误。如何让 vscode 忽略 html 文件中丢失的 doctype?

我为此得到的错误。

Doctype must be declared first.

最佳答案

你需要在你的根文件夹中创建一个 .htmlhintrc

你可以去http://htmlhint.com/并设置适合您的规则并创建 .htmlhintrc

这是一个带有 "doctype-first": false, 的示例,如果这是您的目标,它将忽略您收到的错误。

{
"tagname-lowercase": true,
"attr-lowercase": false,
"attr-value-double-quotes": true,
"doctype-first": false,
"tag-pair": true,
"spec-char-escape": true,
"id-unique": true,
"src-not-empty": true,
"attr-no-duplication": true,
"title-require": true
}

关于visual-studio-code - Meteor typescript 提示 vscode 中缺少 doctype,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38111081/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com