Skip to content

Latest commit

 

History

History
68 lines (47 loc) · 1.31 KB

declaration-property-unit-disallowed-list.md

File metadata and controls

68 lines (47 loc) · 1.31 KB

Pattern: Use of blacklisted property/unit pair

Issue: -

Description

Specify a blacklist of disallowed property and unit pairs within declarations.

Examples

object: { "unprefixed-property-name": ["array", "of", "units"] }

If a property name is surrounded with "/" (e.g. "/^animation/"), it is interpreted as a regular expression. This allows, for example, easy targeting of shorthands: /^animation/ will match animation, animation-duration, animation-timing-function, etc.

Given:

{
  "font-size": ["em", "px"],
  "/^animation/": ["s"]
}

The following patterns are considered violations:

a { font-size: 1em; }
a { animation: animation-name 5s ease; }
a { -webkit-animation: animation-name 5s ease; }
a { animation-duration: 5s; }

The following patterns are not considered violations:

a { font-size: 1.2rem; }
a { height: 100px; }
a { animation: animation-name 500ms ease; }
a { -webkit-animation: animation-name 500ms ease; }
a { animation-duration: 500ms; }

Further Reading