跳至主要内容

annotation-no-unknown

禁止未知注释。

a { color: green !imprtant; }
/** ↑
* This annotation */

此规则认为 CSS 规范中定义的注释(包括编辑草案)是已知的。

message 次要选项 可以接受此规则的参数。

选项

true

以下模式被认为是问题

a {
color: green !imprtant;
}

以下模式不被认为是问题

a {
color: green !important;
}

可选的次要选项

ignoreAnnotations: ["/regex/", /regex/, "string"]

鉴于

["/^--foo-/", "--bar"]

以下模式不被认为是问题

a {
color: green !--foo--bar;
}
a {
color: green !--bar;
}