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 605B

12345678910111213141516171819202122232425262728293031323334
  1. # no-missing-end-of-source-newline
  2. Disallow missing end-of-source newlines.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: pink; }
  6. \n
  7. /** ↑
  8. * This newline */
  9. ```
  10. Completely empty files are not considered violations.
  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. a { color: pink; }
  18. ```
  19. The following patterns are _not_ considered violations:
  20. <!-- prettier-ignore -->
  21. ```css
  22. a { color: pink; }
  23. \n
  24. ```