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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # declaration-no-important
  2. Disallow `!important` within declarations.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: pink !important; }
  6. /** ↑
  7. * This !important */
  8. ```
  9. If you always want `!important` in your declarations, e.g. if you're writing [user styles](https://userstyles.org/), you can _safely_ add them using [`postcss-safe-important`](https://github.com/crimx/postcss-safe-important).
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. a { color: pink !important; }
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. a { color: pink ! important; }
  20. ```
  21. <!-- prettier-ignore -->
  22. ```css
  23. a { color: pink!important; }
  24. ```
  25. The following patterns are _not_ considered violations:
  26. <!-- prettier-ignore -->
  27. ```css
  28. a { color: pink; }
  29. ```