Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Philipp Partosch 46a936d7de added all files to project 2 years ago
..
README.md added all files to project 2 years ago
index.js added all files to project 2 years ago

README.md

property-whitelist

Deprecated: Instead use the property-allowed-list rule.

Specify a list of allowed properties.

a { display: block; }
/** ↑
 * This property */

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

Options

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

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

The following patterns are not considered violations:

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; }