是否有stylelint规则来获取以下内容?
我已经阅读了文档,但是找不到一个
/* bad */
a {
color: pink;
}
/* good */
a {
color: pink;
}
答案 0 :(得分:1)
这解决了我的问题
"declaration-empty-line-before": ["always", {
"except": ["first-nested"],
"ignore": ["after-comment", "after-declaration"]
}],
参考:https://stylelint.io/user-guide/rules/declaration-empty-line-before/#first-nested