2

是否有获取以下内容的 stylelint 规则?

我已阅读文档,但找不到

/* bad */
a {

  color: pink;
}

/* good */
a {
  color: pink;
}
4

1 回答 1

2

这解决了我的问题

"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

于 2018-09-06T19:54:43.630 回答