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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # selector-attribute-operator-disallowed-list
  2. Specify a list of disallowed 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. The following patterns are _not_ considered violations:
  21. <!-- prettier-ignore -->
  22. ```css
  23. [target] {}
  24. ```
  25. <!-- prettier-ignore -->
  26. ```css
  27. [target="_blank"] {}
  28. ```
  29. <!-- prettier-ignore -->
  30. ```css
  31. [class|="top"] {}
  32. ```