我有一个看起来像这样的mixin:
@mixin offset($fraction: 1) {
@if type-of($fraction) != number or not unitless($fraction) {
@include error("#{$fraction} is not a unitless number");
}
margin-left: percentage($fraction);
}
我也有这个规则的 stylelint 设置:
"declaration-empty-line-before": "never"
mixin 和 stylelint 规则都有效。但是,由于 if 语句后的空行,使用此规则会为上述 mixin 引发错误。我找不到任何忽略或排除此 stylelint 规则的规则,例如 if 语句后的 except。如何在不更改项目中所有声明的规则的情况下验证这种代码?