I want to suppress various kind of useless linter error reports, e.g. lacks "content" attribute. So I tried experimenting with setting the options in SublimeLinter.sublime-settings:
"linters": {
"htmltidy": {
"@disable": false,
"args": [-xxx true],
"excludes": []
}
},
and so on and they don't seem to do anything. Am I doing something wrong?