I've placed a sass-lint.yml
file in my project to get rid of some of the pesky errors that are thrown. As I add rules I can see that sass-lint is observing them becasue the ignored errors are showing as blue info icons rather than yellow warning icons. Also the green style error underline remains. How can I make these go away instead? The image below should give you an idea of what I'm describing.
Apparently you have to set defaults to 0
, 1
, or 2
rather than false
. like this:
indentation:
- 0
empty-line-between-blocks:
- 0
property-sort-order:
- 0
Where: