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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # selector-attribute-operator-allowed-list
  2. Specify a list of allowed attribute operators.
  3. <!-- prettier-ignore -->
  4. ```css
  5. [target="_blank"] {}
  6. /** ↑
  7. * This operator */
  8. ```
  9. ## Options
  10. `array|string`: `["array", "of", "operators"]|"operator"`
  11. Given:
  12. ```
  13. ["=", "|="]
  14. ```
  15. The following patterns are considered violations:
  16. <!-- prettier-ignore -->
  17. ```css
  18. [class*="test"] {}
  19. ```
  20. <!-- prettier-ignore -->
  21. ```css
  22. [title~="flower"] {}
  23. ```
  24. <!-- prettier-ignore -->
  25. ```css
  26. [class^="top"] {}
  27. ```
  28. The following patterns are _not_ considered violations:
  29. <!-- prettier-ignore -->
  30. ```css
  31. [target] {}
  32. ```
  33. <!-- prettier-ignore -->
  34. ```css
  35. [target="_blank"] {}
  36. ```
  37. <!-- prettier-ignore -->
  38. ```css
  39. [class|="top"] {}
  40. ```