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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # keyframes-name-pattern
  2. Specify a pattern for keyframe names.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @keyframes slide-right {}
  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. @keyframes foo {}
  20. ```
  21. <!-- prettier-ignore -->
  22. ```css
  23. @keyframes bar {}
  24. ```
  25. <!-- prettier-ignore -->
  26. ```css
  27. @keyframes FOO-bar {}
  28. ```
  29. The following patterns are _not_ considered violations:
  30. <!-- prettier-ignore -->
  31. ```css
  32. @keyframes foo-bar {}
  33. ```