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

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