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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # selector-descendant-combinator-no-non-space
  2. Disallow non-space characters for descendant combinators of selectors.
  3. <!-- prettier-ignore -->
  4. ```css
  5. .foo .bar .baz {}
  6. /** ↑ ↑
  7. * These descendant combinators */
  8. ```
  9. This rule ensures that only a single space is used and ensures no tabs, newlines, nor multiple spaces are used for descendant combinators of selectors.
  10. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix most of the problems reported by this rule.
  11. This rule currently ignores selectors containing comments.
  12. ## Options
  13. ### `true`
  14. The following patterns are considered violations:
  15. <!-- prettier-ignore -->
  16. ```css
  17. .foo .bar {}
  18. ```
  19. <!-- prettier-ignore -->
  20. ```css
  21. .foo
  22. .bar {}
  23. ```
  24. The following patterns are _not_ considered violations:
  25. <!-- prettier-ignore -->
  26. ```css
  27. .foo .bar {}
  28. ```