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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # selector-combinator-blacklist
  2. **_Deprecated: Instead use the [`selector-combinator-disallowed-list`](../selector-combinator-disallowed-list/README.md) rule._**
  3. Specify a list of disallowed 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. <!-- prettier-ignore -->
  28. ```css
  29. a
  30. b {}
  31. ```
  32. The following patterns are _not_ considered violations:
  33. <!-- prettier-ignore -->
  34. ```css
  35. a + b {}
  36. ```
  37. <!-- prettier-ignore -->
  38. ```css
  39. a ~ b {}
  40. ```