function-no-unknown
禁止使用未知函数。
a { transform: unknown(1); }
/** ↑
* Functions like this */
此规则认为 CSS 规范中定义的函数是已知的。
此规则忽略双破折号自定义函数,例如 --custom-function()
。
该 message
次要选项 可以接受此规则的参数。
选项
true
以下模式被视为问题
a { transform: unknown(1); }
以下模式不被视为问题
a { transform: scale(1); }
a { transform: --custom-function(1); }
可选的次要选项
ignoreFunctions: ["/regex/", /regex/, "non-regex"]
忽略指定的函数。
例如,使用 true
。
给定
["theme", "/^foo-/"]
以下模式不被视为问题
a { transform: theme(1); }
a { transform: foo-func(1); }