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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # declaration-block-single-line-max-declarations
  2. Limit the number of declarations within a single-line declaration block.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: pink; top: 0; }
  6. /** ↑ ↑
  7. * The number of these declarations */
  8. ```
  9. ## Options
  10. `int`: Maximum number of declarations allowed.
  11. For example, with `1`:
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. a { color: pink; top: 3px; }
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. a,
  20. b { color: pink; top: 3px; }
  21. ```
  22. The following patterns are _not_ considered violations:
  23. <!-- prettier-ignore -->
  24. ```css
  25. a { color: pink; }
  26. ```
  27. <!-- prettier-ignore -->
  28. ```css
  29. a,
  30. b { color: pink; }
  31. ```
  32. <!-- prettier-ignore -->
  33. ```css
  34. a {
  35. color: pink;
  36. top: 3px;
  37. }
  38. ```