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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # declaration-block-no-duplicate-custom-properties
  2. Disallow duplicate custom properties within declaration blocks.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { --custom-property: pink; --custom-property: orange; }
  6. /** ↑ ↑
  7. * These duplicated custom properties */
  8. ```
  9. This rule is case-sensitive.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. a { --custom-property: pink; --custom-property: orange; }
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. a { --custom-property: pink; background: orange; --custom-property: orange }
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. a { --custom-property: pink; }
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. a { --custom-property: pink; --cUstOm-prOpErtY: orange; }
  29. ```