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

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