1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 05:00:42 +00:00
notes/node_modules/stylelint/lib/rules/property-whitelist
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

property-whitelist

Specify a whitelist of allowed properties.

a { display: block; }
/** ↑
 * These properties */

This rule ignores variables ($sass, @less, --custom-property).

Options

array|string: ["array", "of", "unprefixed", "properties" or "regex"]|"property"|"/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:

["display", "animation", "/^background/"]

The following patterns are considered warnings:

a { color: pink; }
a {
  animation: my-animation 2s;
  color: pink;
}
a { borkgrund: orange; }

The following patterns are not considered warnings:

a { display: block; }
a { -webkit-animation: my-animation 2s; }
a {
  animation: my-animation 2s;
  -webkit-animation: my-animation 2s;
  display: block;
}
a { background: pink; }
a { background-color: pink; }