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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # at-rule-allowed-list
  2. Specify a list of allowed 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. @import "path/to/file.css";
  19. ```
  20. <!-- prettier-ignore -->
  21. ```css
  22. @media screen and (max-width: 1024px) {
  23. a { display: none; }
  24. }
  25. ```
  26. The following patterns are _not_ considered violations:
  27. <!-- prettier-ignore -->
  28. ```css
  29. a { @extend placeholder; }
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. @keyframes name {
  34. from { top: 10px; }
  35. to { top: 20px; }
  36. }
  37. ```
  38. <!-- prettier-ignore -->
  39. ```css
  40. @KEYFRAMES name {
  41. from { top: 10px; }
  42. to { top: 20px; }
  43. }
  44. ```
  45. <!-- prettier-ignore -->
  46. ```css
  47. @-moz-keyframes name {
  48. from { top: 10px; }
  49. to { top: 20px; }
  50. }
  51. ```