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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # block-no-empty
  2. Disallow empty blocks.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { }
  6. /** ↑
  7. * Blocks like this */
  8. ```
  9. ## Options
  10. ### `true`
  11. The following patterns are considered violations:
  12. <!-- prettier-ignore -->
  13. ```css
  14. a {}
  15. ```
  16. <!-- prettier-ignore -->
  17. ```css
  18. a { }
  19. ```
  20. <!-- prettier-ignore -->
  21. ```css
  22. @media print {
  23. a {}
  24. }
  25. ```
  26. The following patterns are _not_ considered violations:
  27. <!-- prettier-ignore -->
  28. ```css
  29. a {
  30. /* foo */
  31. }
  32. ```
  33. <!-- prettier-ignore -->
  34. ```css
  35. @media print {
  36. a {
  37. color: pink;
  38. }
  39. }
  40. ```
  41. ## Optional secondary options
  42. ### `ignore: ["comments"]`
  43. Exclude comments from being treated as content inside of a block.
  44. The following patterns are considered violations:
  45. <!-- prettier-ignore -->
  46. ```css
  47. a {
  48. /* foo */
  49. }
  50. ```
  51. <!-- prettier-ignore -->
  52. ```css
  53. @media print {
  54. a {
  55. /* foo */
  56. }
  57. }
  58. ```