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

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # no-empty-source
  2. Disallow empty sources.
  3. <!-- prettier-ignore -->
  4. ```css
  5. ···\n\t
  6. /** ↑
  7. * This empty source */
  8. ```
  9. A source containing only whitespace is considered empty.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. ```
  16. <!-- prettier-ignore -->
  17. ```css
  18. \t\t
  19. ```
  20. <!-- prettier-ignore -->
  21. ```css
  22. \n
  23. ```
  24. The following patterns are _not_ considered violations:
  25. <!-- prettier-ignore -->
  26. ```css
  27. a {}
  28. ```
  29. <!-- prettier-ignore -->
  30. ```css
  31. /* Only comments */
  32. ```