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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # at-rule-semicolon-space-before
  2. Require a single space or disallow whitespace before the semicolons of at-rules.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @import "components/buttons";
  6. /** ↑
  7. * The space before this semicolon */
  8. ```
  9. ## Options
  10. `string`: `"always"|"never"`
  11. ### `"always"`
  12. There _must always_ be a single space before the semicolons.
  13. The following pattern is considered a violation:
  14. <!-- prettier-ignore -->
  15. ```css
  16. @import "components/buttons";
  17. ```
  18. The following pattern is _not_ considered a violation:
  19. <!-- prettier-ignore -->
  20. ```css
  21. @import "components/buttons" ;
  22. ```
  23. ### `"never"`
  24. There _must never_ be a single space before the semicolons.
  25. The following pattern is considered a violation:
  26. <!-- prettier-ignore -->
  27. ```css
  28. @import "components/buttons" ;
  29. ```
  30. The following pattern is _not_ considered a violation:
  31. <!-- prettier-ignore -->
  32. ```css
  33. @import "components/buttons";
  34. ```