Skip to content

Latest commit

 

History

History
56 lines (42 loc) · 1.1 KB

File metadata and controls

56 lines (42 loc) · 1.1 KB

custom-property-no-missing-var-function

Disallow missing var function for custom properties.

    :root { --foo: red; }
    a { color: --foo; }
/**            ↑
 *             This custom property */

This rule has the following limitations:

  • It only reports custom properties that are defined within the same source.
  • It does not check properties that can contain author-defined identifiers, e.g. transition-property.

The message secondary option can accept the arguments of this rule.

Options

true

The following patterns are considered problems:

:root { --foo: red; }
a { color: --foo; }
@property --foo {}
a { color: --foo; }

The following patterns are not considered problems:

:root { --foo: red; }
a { color: var(--foo); }
@property --foo {}
a { color: var(--foo); }
@property --foo {}
a { transition-property: --foo; }