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;
}