Pattern: Unknown annotation
Issue: -
Disallow unknown annotations.
a { color: green !imprtant; }
/** ↑
* This annotation */
This rule considers annotations defined in the CSS Specifications, up to and including Editor's Drafts, to be known.
The following pattern is considered a problem:
a {
color: green !imprtant;
}
The following pattern is not considered problem:
a {
color: green !important;
}
Given:
["/^--foo-/", "--bar"]
The following patterns are not considered problems:
a {
color: green !--foo--bar;
}
a {
color: green !--bar;
}