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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # selector-combinator-allowed-list
  2. Specify a list of allowed combinators.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a + b {}
  6. /** ↑
  7. * This combinator */
  8. ```
  9. This rule normalizes the whitespace descendant combinator to be a single space.
  10. This rule ignores [reference combinators](https://www.w3.org/TR/selectors4/#idref-combinators) e.g. `/for/`.
  11. ## Options
  12. `array|string`: `["array", "of", "combinators"]|"combinator"`
  13. Given:
  14. ```
  15. [">", " "]
  16. ```
  17. The following patterns are considered violations:
  18. <!-- prettier-ignore -->
  19. ```css
  20. a + b {}
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a ~ b {}
  25. ```
  26. The following patterns are _not_ considered violations:
  27. <!-- prettier-ignore -->
  28. ```css
  29. a > b {}
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. a b {}
  34. ```
  35. <!-- prettier-ignore -->
  36. ```css
  37. a
  38. b {}
  39. ```