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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # selector-combinator-disallowed-list
  2. Specify a list of disallowed 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. <!-- prettier-ignore -->
  27. ```css
  28. a
  29. b {}
  30. ```
  31. The following patterns are _not_ considered violations:
  32. <!-- prettier-ignore -->
  33. ```css
  34. a + b {}
  35. ```
  36. <!-- prettier-ignore -->
  37. ```css
  38. a ~ b {}
  39. ```