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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. # selector-attribute-operator-space-after
  2. Require a single space or disallow whitespace after operators within attribute selectors.
  3. <!-- prettier-ignore -->
  4. ```css
  5. [target= _blank]
  6. /** ↑
  7. * The space after operator */
  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`: `"always"|"never"`
  12. ### `"always"`
  13. There _must always_ be a single space after the operator.
  14. The following patterns are considered violations:
  15. <!-- prettier-ignore -->
  16. ```css
  17. [target=_blank] {}
  18. ```
  19. <!-- prettier-ignore -->
  20. ```css
  21. [target =_blank] {}
  22. ```
  23. <!-- prettier-ignore -->
  24. ```css
  25. [target='_blank'] {}
  26. ```
  27. <!-- prettier-ignore -->
  28. ```css
  29. [target="_blank"] {}
  30. ```
  31. <!-- prettier-ignore -->
  32. ```css
  33. [target ='_blank'] {}
  34. ```
  35. <!-- prettier-ignore -->
  36. ```css
  37. [target ="_blank"] {}
  38. ```
  39. The following patterns are _not_ considered violations:
  40. <!-- prettier-ignore -->
  41. ```css
  42. [target] {}
  43. ```
  44. <!-- prettier-ignore -->
  45. ```css
  46. [target= _blank] {}
  47. ```
  48. <!-- prettier-ignore -->
  49. ```css
  50. [target= '_blank'] {}
  51. ```
  52. <!-- prettier-ignore -->
  53. ```css
  54. [target= "_blank"] {}
  55. ```
  56. <!-- prettier-ignore -->
  57. ```css
  58. [target = _blank] {}
  59. ```
  60. <!-- prettier-ignore -->
  61. ```css
  62. [target = '_blank'] {}
  63. ```
  64. <!-- prettier-ignore -->
  65. ```css
  66. [target = "_blank"] {}
  67. ```
  68. ### `"never"`
  69. There _must never_ be a single space after the operator.
  70. The following patterns are considered violations:
  71. <!-- prettier-ignore -->
  72. ```css
  73. [target= _blank] {}
  74. ```
  75. <!-- prettier-ignore -->
  76. ```css
  77. [target = _blank] {}
  78. ```
  79. <!-- prettier-ignore -->
  80. ```css
  81. [target= '_blank'] {}
  82. ```
  83. <!-- prettier-ignore -->
  84. ```css
  85. [target= "_blank"] {}
  86. ```
  87. <!-- prettier-ignore -->
  88. ```css
  89. [target = '_blank'] {}
  90. ```
  91. <!-- prettier-ignore -->
  92. ```css
  93. [target = "_blank"] {}
  94. ```
  95. The following patterns are _not_ considered violations:
  96. <!-- prettier-ignore -->
  97. ```css
  98. [target] {}
  99. ```
  100. <!-- prettier-ignore -->
  101. ```css
  102. [target=_blank] {}
  103. ```
  104. <!-- prettier-ignore -->
  105. ```css
  106. [target='_blank'] {}
  107. ```
  108. <!-- prettier-ignore -->
  109. ```css
  110. [target="_blank"] {}
  111. ```
  112. <!-- prettier-ignore -->
  113. ```css
  114. [target =_blank] {}
  115. ```
  116. <!-- prettier-ignore -->
  117. ```css
  118. [target ='_blank'] {}
  119. ```
  120. <!-- prettier-ignore -->
  121. ```css
  122. [target ="_blank"] {}
  123. ```