property-disallowed-list
Specify a list of disallowed properties.
a { text-rendering: optimizeLegibility; }
/** ↑
* This property */
The message
secondary option can accept the arguments of this rule.
Options
array|string|regex
: ["array", "of", /properties/, "regex"]|"property"|"/regex/"|/regex/
If a string is surrounded with "/"
(e.g. "/^background/"
), it is interpreted as a regular expression. This allows, for example, easy targeting of shorthands: /^background/
will match background
, background-size
, background-color
, etc.
Given:
["text-rendering", "animation", "/^background/"]
The following patterns are considered problems:
a { text-rendering: optimizeLegibility; }
a {
animation: my-animation 2s;
color: pink;
}
a { -webkit-animation: my-animation 2s; }
a { background: pink; }
a { background-size: cover; }
The following patterns are not considered problems:
a { color: pink; }
a { no-background: sure; }