function-allowed-list
指定允许的函数列表。
a { transform: scale(1); }
/** ↑
* This function */
该 message
次要选项 可以接受此规则的参数。
选项
array|string|regex
: ["array", "of", "unprefixed", /functions/, "/regex/"]|"function"|"/regex/"|/regex/
如果字符串用 "/"
包围(例如 "/^rgb/"
),则将其解释为正则表达式。
给定
["scale", "rgba", "/linear-gradient/"]
以下模式被认为是问题
a { transform: rotate(1); }
a {
color: hsla(170, 50%, 45%, 1)
}
a {
background:
red,
-webkit-radial-gradient(red, green, blue);
}
以下模式不被认为是问题
a { background: red; }
a { transform: scale(1); }
a {
color: rgba(0, 0, 0, 0.5);
}
a {
background:
red,
-moz-linear-gradient(45deg, blue, red);
}