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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # at-rule-blacklist
  2. **_Deprecated: Instead use the [`at-rule-disallowed-list`](../at-rule-disallowed-list/README.md) rule._**
  3. Specify a list of disallowed at-rules.
  4. <!-- prettier-ignore -->
  5. ```css
  6. @keyframes name {}
  7. /** ↑
  8. * At-rules like this */
  9. ```
  10. ## Options
  11. `array|string`: `["array", "of", "unprefixed", "at-rules"]|"at-rule"`
  12. Given:
  13. ```
  14. ["extend", "keyframes"]
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. a { @extend placeholder; }
  20. ```
  21. <!-- prettier-ignore -->
  22. ```css
  23. @keyframes name {
  24. from { top: 10px; }
  25. to { top: 20px; }
  26. }
  27. ```
  28. <!-- prettier-ignore -->
  29. ```css
  30. @-moz-keyframes name {
  31. from { top: 10px; }
  32. to { top: 20px; }
  33. }
  34. ```
  35. The following patterns are _not_ considered violations:
  36. <!-- prettier-ignore -->
  37. ```css
  38. @import "path/to/file.css";
  39. ```