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

123456789101112131415161718192021222324252627282930313233343536
  1. # custom-property-pattern
  2. Specify a pattern for custom properties.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { --foo-: 1px; }
  6. /** ↑
  7. * The pattern of this */
  8. ```
  9. ## Options
  10. `regex|string`
  11. A string will be translated into a RegExp like so `new RegExp(yourString)` — so be sure to escape properly.
  12. Given the string:
  13. ```
  14. "foo-.+"
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. :root { --boo-bar: 0; }
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. :root { --foo-bar: 0; }
  25. ```