stylefmt
stylefmt copied to clipboard
at-rule-empty-line-before not honoring `blockless-after-blockless`
For the code
div {
@include rule()
@include secondrule()
}
and the Stylelint directive:
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-blockless"],
}
]
Stylefmt is putting a space between the includes where it should not, e.g.
div {
@include rule()
@include secondrule()
}
Possibly because Stylelint changed blockless-group
(which the README says Stylefmt should honor) to blockless-after-blockless
as a rule.