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 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # value-no-vendor-prefix
  2. Disallow vendor prefixes for values.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { display: -webkit-flex; }
  6. /** ↑
  7. * These prefixes */
  8. ```
  9. This rule will only complain for prefixed _standard_ values, and not for prefixed _proprietary_ or _unknown_ ones.
  10. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  11. ## Options
  12. ### `true`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. a { display: -webkit-flex; }
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. a { max-width: -moz-max-content; }
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a { background: -webkit-linear-gradient(bottom, #000, #fff); }
  25. ```
  26. The following patterns are _not_ considered violations:
  27. <!-- prettier-ignore -->
  28. ```css
  29. a { display: flex; }
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. a { max-width: max-content; }
  34. ```
  35. <!-- prettier-ignore -->
  36. ```css
  37. a { background: linear-gradient(bottom, #000, #fff); }
  38. ```
  39. ## Optional secondary options
  40. ### `ignoreValues: ["string"]`
  41. Given:
  42. ```
  43. ["grab", "max-content"]
  44. ```
  45. The following patterns are _not_ considered violations:
  46. <!-- prettier-ignore -->
  47. ```css
  48. cursor: -webkit-grab;
  49. ```
  50. <!-- prettier-ignore -->
  51. ```css
  52. .foo { max-width: -moz-max-content; }
  53. ```