Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 557 Bytes

README.md

File metadata and controls

45 lines (33 loc) · 557 Bytes

at-rule-blacklist

指定禁用的@规则的黑名单。

    @keyframes name {}
/** ↑
 * 像这样的@规则 */

选项

array|string: ["array", "of", "unprefixed", "at-rules"]|"at-rule"

给定:

["extend", "keyframes"]

以下模式被视为违规:

a { @extend placeholder; }
@keyframes name {
  from { top: 10px; }
  to { top: 20px; }
}
@-moz-keyframes name {
  from { top: 10px; }
  to { top: 20px; }
}

以下模式被视为违规:

@import "path/to/file.css";