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

no-invalid-double-slash-comments

Disallow double-slash comments (//...) which are not supported by CSS and could lead to unexpected results.

a {
  //color: pink;
}
/** ↑
 *  This comment */

If you are using a preprocessor that allows // single-line comments (e.g. Sass, Less, Stylus), this rule will not complain about those. They are compiled into standard CSS comments by your preprocessor, so stylelint will consider them valid. This rule only complains about the lesser-known method of using // to “comment out” a single-line of code in regular CSS. (If you didn’t know this was possible, have a look at “Single Line Comments (//) in CSS”).

Options

true

The following patterns are considered violations:

a {
  //color: pink;
}
//a { color: pink; }
// Comment {}
a {
  color: pink;
}

The following patterns are not considered violations:

a {
  /* color: pink; */
}
/* a { color: pink;  } */