I installed sublime linter (ST3) and a few linters.
The CSS linter is flagging a lot of “errors”, so I looked it up online and found which to disable, and then edited the prefs file like this:
"csslint": {
"@disable": false,
"args": ],
"errors": "",
"excludes": ],
"ignore": "",
"ignored":
"ids",
"box-model",
"font-sizes",
"unique-headings",
"import",
"qualified-headings",
"adjoining-classes",
"overqualified-elements"
],
"warnings": ""
},
Yet, these errors are still flagged. Am I doing it wrong?
