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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # property-case
  2. Specify lowercase or uppercase for properties.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { width: 1px; }
  6. /** ↑
  7. * This property */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  10. ## Options
  11. `string`: `"lower"|"upper"`
  12. ### `"lower"`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. a {
  17. Width: 1px
  18. }
  19. ```
  20. <!-- prettier-ignore -->
  21. ```css
  22. a {
  23. WIDTH: 1px
  24. }
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. a {
  29. widtH: 1px
  30. }
  31. ```
  32. <!-- prettier-ignore -->
  33. ```css
  34. a {
  35. border-Radius: 5px;
  36. }
  37. ```
  38. <!-- prettier-ignore -->
  39. ```css
  40. a {
  41. -WEBKIT-animation-duration: 3s;
  42. }
  43. ```
  44. <!-- prettier-ignore -->
  45. ```css
  46. @media screen and (orientation: landscape) {
  47. WiDtH: 500px;
  48. }
  49. ```
  50. The following patterns are _not_ considered violations:
  51. <!-- prettier-ignore -->
  52. ```css
  53. a {
  54. width: 1px
  55. }
  56. ```
  57. <!-- prettier-ignore -->
  58. ```css
  59. a {
  60. border-radius: 5px;
  61. }
  62. ```
  63. <!-- prettier-ignore -->
  64. ```css
  65. a {
  66. -webkit-animation-duration: 3s;
  67. }
  68. ```
  69. <!-- prettier-ignore -->
  70. ```css
  71. @media screen and (orientation: landscape) {
  72. width: 500px;
  73. }
  74. ```
  75. ### `"upper"`
  76. The following patterns are considered violations:
  77. <!-- prettier-ignore -->
  78. ```css
  79. a {
  80. Width: 1px
  81. }
  82. ```
  83. <!-- prettier-ignore -->
  84. ```css
  85. a {
  86. width: 1px
  87. }
  88. ```
  89. <!-- prettier-ignore -->
  90. ```css
  91. a {
  92. widtH: 1px
  93. }
  94. ```
  95. <!-- prettier-ignore -->
  96. ```css
  97. a {
  98. border-Radius: 5px;
  99. }
  100. ```
  101. <!-- prettier-ignore -->
  102. ```css
  103. a {
  104. -WEBKIT-animation-duration: 3s;
  105. }
  106. ```
  107. <!-- prettier-ignore -->
  108. ```css
  109. @media screen and (orientation: landscape) {
  110. WiDtH: 500px;
  111. }
  112. ```
  113. The following patterns are _not_ considered violations:
  114. <!-- prettier-ignore -->
  115. ```css
  116. a {
  117. WIDTH: 1px
  118. }
  119. ```
  120. <!-- prettier-ignore -->
  121. ```css
  122. a {
  123. BORDER-RADIUS: 5px;
  124. }
  125. ```
  126. <!-- prettier-ignore -->
  127. ```css
  128. a {
  129. -WEBKIT-ANIMATION-DURATION: 3s;
  130. }
  131. ```
  132. <!-- prettier-ignore -->
  133. ```css
  134. @media screen and (orientation: landscape) {
  135. WIDTH: 500px;
  136. }
  137. ```