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

value-no-vendor-prefix

Disallow vendor prefixes for values.

a { display: -webkit-flex; }
/**          ↑
 *  These prefixes */

This rule will only complain for prefixed standard values, and not for prefixed proprietary or unknown ones.

The fix option can automatically fix all of the problems reported by this rule.

Options

true

The following patterns are considered violations:

a { display: -webkit-flex; }
a { max-width: -moz-max-content; }
a { background: -webkit-linear-gradient(bottom, #000, #fff); }

The following patterns are not considered violations:

a { display: flex; }
a { max-width: max-content; }
a { background: linear-gradient(bottom, #000, #fff); }

Optional secondary options

ignoreValues: ["string"]

Given:

["grab", "max-content"]

The following patterns are not considered violations:

cursor: -webkit-grab;
.foo { max-width: -moz-max-content; }