我试图让SublimeLinter和HTML-tidy忽略我的 html 文件中的特定错误。我以前从未使用过SublimeLinter,所以我有点困惑。
有什么办法可以忽略不必要的错误?因为在我的屏幕上看到很多橙色标记有点烦人。
我不断得到warning: link inserting "type" attribute
更多。
这是我的 SublimeLinter.sublime-settings
我尝试了这些设置:
"htmllint": {
"@disable": false,
"args": [],
"excludes": [],
"ignore_match": {
"inc": [
"missing <!DOCTYPE> declaration",
"inserting implicit <body>",
"inserting missing 'title' element",
"<link> inserting 'type' attribute"
]
}
},
和
"htmltidy": {
"@disable": false,
"args": [],
"excludes": [],
"ignore_match": {
"inc": [
"missing <!DOCTYPE> declaration",
"inserting implicit <body>",
"inserting missing 'title' element",
"<link> inserting 'type' attribute"
]
}
},
但似乎没有任何效果。