Hello, I am attempting to ignore two separate csslint rules in a single file and I am unable to do so. If I move one rule out into another file, the linter does not complain. However, if I leave them in the same file, the linter does not seem to process the second ignore.
If I remove the unqualified attributes ignore, the qualified headings ignore will work just fine. It seems that the linter is just ignoring the second ignore altogether. I am using v0.3.0 of the plugin, and all linting is done after the files are converted to css.
Any help is appreciated. I did my fair share of research and could not find the culprit. Thanks! Here is the cl output from the linter:
csslint: There are 2 problems in /Users/ayjee/src/less/main.css.
main.css
1: warning at line 200, col 27
Heading (h1) should not be qualified.
.card__body h1 {
main.css
2: warning at line 206, col 27
Heading (h2) should not be qualified.
.card__body h2 {
Hello, I am attempting to ignore two separate csslint rules in a single file and I am unable to do so. If I move one rule out into another file, the linter does not complain. However, if I leave them in the same file, the linter does not seem to process the second ignore.
Please see below:
If I remove the unqualified attributes ignore, the qualified headings ignore will work just fine. It seems that the linter is just ignoring the second ignore altogether. I am using
v0.3.0
of the plugin, and all linting is done after the files are converted to css.Any help is appreciated. I did my fair share of research and could not find the culprit. Thanks! Here is the cl output from the linter: