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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # at-rule-no-vendor-prefix
  2. Disallow vendor prefixes for at-rules.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @-webkit-keyframes { 0% { top: 0; } }
  6. /** ↑
  7. * This prefix */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. @-webkit-keyframes { 0% { top: 0; } }
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. @-ms-viewport { orientation: landscape; }
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. @keyframes { 0% { top: 0; } }
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. @viewport { orientation: landscape; }
  29. ```