I run stylelint in my angular project and I got error:
Unexpected unknown at-rule "@use"
My stylelint version is "^13.12.0"
.
I don't want to disable this rule. I want stylelint to know about "@use" in scss files.
I also tested in stylelint demo website and I got the same error.
@use 'sass:list';
a {color: #FFF; }
Stylelint doesn't support @use
?
How can I solve this issue?