我想要抑制各种无用的linter错误报告,例如:缺乏“内容”属性。所以我尝试在SublimeLinter.sublime-settings中设置选项:
"linters": {
"htmltidy": {
"@disable": false,
"args": [-xxx true],
"excludes": []
}
},
等等他们似乎什么也没做。我做错了吗?
答案 0 :(得分:1)
设置文件是JSON文件,看起来您的编辑不是有效的JSON。尝试在args周围加上引号:
"args": ["-xxx true"]
或
"args": ["-xxx", "true"]
答案 1 :(得分:0)
这对我有用:
"linters": {
"htmltidy": {
"@disable": false,
"args": [
//http://tidy.sourceforge.net/docs/quickref.html
"--drop-proprietary-attributes", "false"
],
"excludes": []
}...