at-rule-allowed-list
指定允許的 at 規則清單。
@keyframes name {}
/** ↑
* At-rules like this */
message
次要選項可以接受此規則的參數。
選項
陣列|字串
:["陣列", "未加前綴", "at-規則"]|"at-規則"
給定
["extend", "keyframes"]
以下模式被視為問題
@import "path/to/file.css";
@media screen and (max-width: 1024px) {
a { display: none; }
}
以下模式不會被視為問題
a { @extend placeholder; }
@keyframes name {
from { top: 10px; }
to { top: 20px; }
}
@KEYFRAMES name {
from { top: 10px; }
to { top: 20px; }
}
@-moz-keyframes name {
from { top: 10px; }
to { top: 20px; }
}