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

media-feature-name-no-unknown

Disallow unknown media feature names.

@media (min-width: 700px) {}
/**     ↑
 * This media feature name */

This rule considers media feature names defined in the CSS Specifications, up to and including Editor’s Drafts, to be known.

This rule ignores vendor-prefixed media feature names.

Options

true

The following patterns are considered violations:

@media screen and (unknown) {}
@media screen and (unknown: 10px) {}
@media screen and (unknown > 10px) {}

The following patterns are not considered violations:

@media all and (monochrome) {}
@media (min-width: 700px) {}
@media (MIN-WIDTH: 700px) {}
@media (min-width: 700px) and (orientation: landscape) {}
@media (-webkit-min-device-pixel-ratio: 2) {}

Optional secondary options

ignoreMediaFeatureNames: ["/regex/", /regex/, "string"]

Given:

["/^my-/", "custom"]

The following patterns are not considered violations:

@media screen and (my-media-feature-name) {}
@media screen and (custom: 10px) {}
@media screen and (100px < custom < 700px) {}
@media (min-width: 700px) and (custom: 10px) {}