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

at-rule-name-newline-after

Require a newline after at-rule names.

    @media
   /*↑*/  (max-width: 600px) {}
/**  ↑
 * The newline after this at-rule name */

Options

string: "always"|"always-multi-line"

"always"

There must always be a newline after at-rule names.

The following patterns are considered violations:

@charset "UTF-8";
@media (min-width: 700px) and
  (orientation: landscape) {}

The following patterns are not considered violations:

@charset
  "UTF-8";
@import
  "x.css" screen and
 (orientation:landscape);
@media
  (min-width: 700px) and (orientation: landscape) {}
@media
  (min-width: 700px) and
  (orientation: landscape) {}

"always-multi-line"

There must always be a newline after at-rule names in at-rules with multi-line parameters.

The following patterns are considered violations:

@import "x.css" screen and
 (orientation:landscape);
@media (min-width: 700px) and
 (orientation: landscape) {}

The following patterns are not considered violations:

@charset "UTF-8";
@charset
  "UTF-8";
@import "x.css" screen and (orientation:landscape);
@media (min-width: 700px) and (orientation: landscape) {}
@media
  (min-width: 700px) and
  (orientation: landscape) {}