I have installed the CSS Linter and it is working fine. I had to add the “path” in SublimeLinter’s settings. I have now installed HTML Lint. How do I also add this to the SublimeLinter’s settings? I’ve tried the following and it doesn’t work:
// SublimeLinter Settings - User
{
// Provide extra paths to be searched when locating system executables.
"paths": {
"linux": [],
"osx": [
"/usr/local/bin/csslint"
],
"windows": []
},
"paths": {
"linux": [],
"osx": [
"/usr/local/bin/htmllint"
],
"windows": []
},
"linters": {
"csslint": {
"@disable": false,
"args": [],
"errors": "",
"excludes": [],
"ignore": ["order-alphabetical"],
"warnings": ""
}
}
}
Nor did this work:
// SublimeLinter Settings - User
{
// Provide extra paths to be searched when locating system executables.
"paths": {
"linux": [],
"osx": [
"/usr/local/bin/csslint",
"/usr/local/bin/htmllint"
],
"windows": []
},
"linters": {
"csslint": {
"@disable": false,
"args": [],
"errors": "",
"excludes": [],
"ignore": ["order-alphabetical"],
"warnings": ""
}
}
}