Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 480 Bytes

File metadata and controls

29 lines (19 loc) · 480 Bytes

custom-property-pattern

Specify a pattern for custom properties.

a { --foo-bar: 1px; }
/**   ↑
 * The pattern of this */

Options

regex or string

A string will be translated into a RegExp like so new RegExp(yourString) — so be sure to escape properly.

E.g. /foo-.+/

The following patterns are considered warnings:

:root { --boo-bar: 0; }

The following patterns are not considered warnings:

:root { --foo-bar: 0; }