Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 1.35 KB

File metadata and controls

61 lines (45 loc) · 1.35 KB

rule-selector-property-disallowed-list

Specify a list of disallowed properties for selectors within rules.

    a { color: red; }
/** ↑          ↑
 * Selector and property name */

Options

object: { "selector": ["array", "of", "properties"]

If a selector name is surrounded with "/" (e.g. "/anchor/"), it is interpreted as a regular expression. This allows, for example, easy targeting of all the potential anchors: /anchor/ will match .anchor, [data-anchor], etc.

The same goes for properties. Keep in mind that a regular expression value is matched against the entire property name, not specific parts of it. For example, a value like "animation-duration" will not match "/^duration/" (notice beginning of the line boundary) but will match "/duration/".

Given:

{
  "a": ["color", "/margin/"],
  "/foo/": ["/size/"]
}

The following patterns are considered problems:

a { color: red; }
a { margin-top: 0px; }
html[data-foo] { font-size: 1px; }

The following patterns are not considered problems:

a { background: red; }
a { padding-top: 0px; }
html[data-foo] { color: red; }