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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # at-rule-name-case
  2. Specify lowercase or uppercase for at-rules names.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @media (min-width: 10px) {}
  6. /** ↑
  7. * This at-rule name */
  8. ```
  9. Only lowercase at-rule names are valid in SCSS.
  10. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix some of the problems reported by this rule.
  11. ## Options
  12. `string`: `"lower"|"upper"`
  13. ### `"lower"`
  14. The following patterns are considered violations:
  15. <!-- prettier-ignore -->
  16. ```css
  17. @Charset 'UTF-8';
  18. ```
  19. <!-- prettier-ignore -->
  20. ```css
  21. @cHarSeT 'UTF-8';
  22. ```
  23. <!-- prettier-ignore -->
  24. ```css
  25. @CHARSET 'UTF-8';
  26. ```
  27. <!-- prettier-ignore -->
  28. ```css
  29. @Media (min-width: 50em) {}
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. @mEdIa (min-width: 50em) {}
  34. ```
  35. <!-- prettier-ignore -->
  36. ```css
  37. @MEDIA (min-width: 50em) {}
  38. ```
  39. The following patterns are _not_ considered violations:
  40. <!-- prettier-ignore -->
  41. ```css
  42. @charset 'UTF-8';
  43. ```
  44. <!-- prettier-ignore -->
  45. ```css
  46. @media (min-width: 50em) {}
  47. ```
  48. ### `"upper"`
  49. The following patterns are considered violations:
  50. <!-- prettier-ignore -->
  51. ```css
  52. @Charset 'UTF-8';
  53. ```
  54. <!-- prettier-ignore -->
  55. ```css
  56. @cHarSeT 'UTF-8';
  57. ```
  58. <!-- prettier-ignore -->
  59. ```css
  60. @charset 'UTF-8';
  61. ```
  62. <!-- prettier-ignore -->
  63. ```css
  64. @Media (min-width: 50em) {}
  65. ```
  66. <!-- prettier-ignore -->
  67. ```css
  68. @mEdIa (min-width: 50em) {}
  69. ```
  70. <!-- prettier-ignore -->
  71. ```css
  72. @media (min-width: 50em) {}
  73. ```
  74. The following patterns are _not_ considered violations:
  75. <!-- prettier-ignore -->
  76. ```css
  77. @CHARSET 'UTF-8';
  78. ```
  79. <!-- prettier-ignore -->
  80. ```css
  81. @MEDIA (min-width: 50em) {}
  82. ```