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 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # at-rule-name-newline-after
  2. Require a newline after at-rule names.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @media
  6. /*↑*/ (max-width: 600px) {}
  7. /** ↑
  8. * The newline after this at-rule name */
  9. ```
  10. ## Options
  11. `string`: `"always"|"always-multi-line"`
  12. ### `"always"`
  13. There _must always_ be a newline after at-rule names.
  14. The following patterns are considered violations:
  15. <!-- prettier-ignore -->
  16. ```css
  17. @charset "UTF-8";
  18. ```
  19. <!-- prettier-ignore -->
  20. ```css
  21. @media (min-width: 700px) and
  22. (orientation: landscape) {}
  23. ```
  24. The following patterns are _not_ considered violations:
  25. <!-- prettier-ignore -->
  26. ```css
  27. @charset
  28. "UTF-8";
  29. ```
  30. <!-- prettier-ignore -->
  31. ```css
  32. @import
  33. "x.css" screen and
  34. (orientation:landscape);
  35. ```
  36. <!-- prettier-ignore -->
  37. ```css
  38. @media
  39. (min-width: 700px) and (orientation: landscape) {}
  40. ```
  41. <!-- prettier-ignore -->
  42. ```css
  43. @media
  44. (min-width: 700px) and
  45. (orientation: landscape) {}
  46. ```
  47. ### `"always-multi-line"`
  48. There _must always_ be a newline after at-rule names in at-rules with multi-line parameters.
  49. The following patterns are considered violations:
  50. <!-- prettier-ignore -->
  51. ```css
  52. @import "x.css" screen and
  53. (orientation:landscape);
  54. ```
  55. <!-- prettier-ignore -->
  56. ```css
  57. @media (min-width: 700px) and
  58. (orientation: landscape) {}
  59. ```
  60. The following patterns are _not_ considered violations:
  61. <!-- prettier-ignore -->
  62. ```css
  63. @charset "UTF-8";
  64. ```
  65. <!-- prettier-ignore -->
  66. ```css
  67. @charset
  68. "UTF-8";
  69. ```
  70. <!-- prettier-ignore -->
  71. ```css
  72. @import "x.css" screen and (orientation:landscape);
  73. ```
  74. <!-- prettier-ignore -->
  75. ```css
  76. @media (min-width: 700px) and (orientation: landscape) {}
  77. ```
  78. <!-- prettier-ignore -->
  79. ```css
  80. @media
  81. (min-width: 700px) and
  82. (orientation: landscape) {}
  83. ```