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 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # at-rule-no-unknown
  2. Disallow unknown at-rules.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @unknown (max-width: 960px) {}
  6. /** ↑
  7. * At-rules like this */
  8. ```
  9. This rule considers at-rules defined in the CSS Specifications, up to and including Editor's Drafts, to be known.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. @unknown {}
  16. ```
  17. The following patterns are _not_ considered violations:
  18. <!-- prettier-ignore -->
  19. ```css
  20. @charset "UTF-8";
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. @CHARSET "UTF-8";
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. @media (max-width: 960px) {}
  29. ```
  30. <!-- prettier-ignore -->
  31. ```css
  32. @font-feature-values Font One {
  33. @styleset {}
  34. }
  35. ```
  36. ## Optional secondary options
  37. ### `ignoreAtRules: ["/regex/", /regex/, "string"]`
  38. Given:
  39. ```
  40. ["/^my-/", "custom"]
  41. ```
  42. The following patterns are _not_ considered violations:
  43. <!-- prettier-ignore -->
  44. ```css
  45. @my-at-rule "x.css";
  46. ```
  47. <!-- prettier-ignore -->
  48. ```css
  49. @my-other-at-rule {}
  50. ```
  51. <!-- prettier-ignore -->
  52. ```css
  53. @custom {}
  54. ```