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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # number-no-trailing-zeros
  2. Disallow trailing zeros in numbers.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { top: 0.5000px; bottom: 1.0px; }
  6. /** ↑ ↑
  7. * These trailing zeros */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix some of the problems reported by this rule.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. a { top: 1.0px }
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. a { top: 1.01000px }
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. a { top: 1px }
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. a { top: 1.01px }
  29. ```