I\'m using sass-lint with Gulp. How can I disable warnings for a particular style in my sass from the lint console output?
I\'ve found a similar question but I
Gotcha.
First, here's the listing of rules for sass-lint:
https://github.com/sasstools/sass-lint/tree/develop/lib/rules
Next, you can set an option for the rule you want:
rule: severity: 0
0 = nothing written
1 = warning
2 = error
Is this what you needed?