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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # function-blacklist
  2. **_Deprecated: Instead use the [`function-disallowed-list`](../function-disallowed-list/README.md) rule._**
  3. Specify a list of disallowed functions.
  4. <!-- prettier-ignore -->
  5. ```css
  6. a { transform: scale(1); }
  7. /** ↑
  8. * This function */
  9. ```
  10. ## Options
  11. `array|string`: `["array", "of", "unprefixed", /functions/ or "regex"]|"function"|"/regex/"`
  12. If a string is surrounded with `"/"` (e.g. `"/^rgb/"`), it is interpreted as a regular expression.
  13. Given:
  14. ```
  15. ["scale", "rgba", "linear-gradient"]
  16. ```
  17. The following patterns are considered violations:
  18. <!-- prettier-ignore -->
  19. ```css
  20. a { transform: scale(1); }
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a {
  25. color: rgba(0, 0, 0, 0.5);
  26. }
  27. ```
  28. <!-- prettier-ignore -->
  29. ```css
  30. a {
  31. background:
  32. red,
  33. -moz-linear-gradient(45deg, blue, red);
  34. }
  35. ```
  36. The following patterns are _not_ considered violations:
  37. <!-- prettier-ignore -->
  38. ```css
  39. a { background: red; }
  40. ```