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.

README.md 648B

12345678910111213141516171819202122232425262728293031323334
  1. # no-empty-first-line
  2. Disallow empty first lines.
  3. <!-- prettier-ignore -->
  4. ```css
  5. \n
  6. /** ↑
  7. * This newline */
  8. a { color: pink; }
  9. ```
  10. This rule ignores empty sources. Use the [`no-empty-source`](../no-empty-source/README.md) rule to disallow these.
  11. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  12. ## Options
  13. ### `true`
  14. The following patterns are considered violations:
  15. <!-- prettier-ignore -->
  16. ```css
  17. \n
  18. a { color: pink; }
  19. ```
  20. The following patterns are _not_ considered violations:
  21. <!-- prettier-ignore -->
  22. ```css
  23. a { color: pink; }
  24. ```