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

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