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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # comment-no-empty
  2. Disallow empty comments.
  3. <!-- prettier-ignore -->
  4. ```css
  5. /* */
  6. /** ↑
  7. * Comments like this */
  8. ```
  9. This rule ignores SCSS-like comments.
  10. **Caveat:** Comments within _selector and value lists_ are currently ignored.
  11. ## Options
  12. ### `true`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. /**/
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. /* */
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. /*
  25. */
  26. ```
  27. The following patterns are _not_ considered violations:
  28. <!-- prettier-ignore -->
  29. ```css
  30. /* comment */
  31. ```
  32. <!-- prettier-ignore -->
  33. ```css
  34. /*
  35. * Multi-line Comment
  36. **/
  37. ```