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.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # at-rule-semicolon-newline-after
  2. Require a newline after the semicolon of at-rules.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @import url("x.css");
  6. @import url("y.css");
  7. /** ↑
  8. * The newline after these semicolons */
  9. ```
  10. This rule allows an end-of-line comment followed by a newline. For example:
  11. <!-- prettier-ignore -->
  12. ```css
  13. @import url("x.css"); /* end-of-line comment */
  14. a {}
  15. ```
  16. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  17. ## Options
  18. `string`: `"always"`
  19. ### `"always"`
  20. There _must always_ be a newline after the semicolon.
  21. The following patterns are considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. @import url("x.css"); @import url("y.css");
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. @import url("x.css"); a {}
  29. ```
  30. The following patterns are _not_ considered violations:
  31. <!-- prettier-ignore -->
  32. ```css
  33. @import url("x.css");
  34. @import url("y.css");
  35. ```
  36. <!-- prettier-ignore -->
  37. ```css
  38. @import url("x.css"); /* end-of-line comment */
  39. a {}
  40. ```
  41. <!-- prettier-ignore -->
  42. ```css
  43. @import url("x.css");
  44. a {}
  45. ```