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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. # comment-whitespace-inside
  2. Require or disallow whitespace on the inside of comment markers.
  3. <!-- prettier-ignore -->
  4. ```css
  5. /* comment */
  6. /** ↑ ↑
  7. * The space inside these two markers */
  8. ```
  9. Any number of asterisks are allowed at the beginning or end of the comment. So `/** comment **/` is treated the same way as `/* comment */`.
  10. **Caveat:** Comments within _selector and value lists_ are currently ignored.
  11. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  12. ## Options
  13. `string`: `"always"|"never"`
  14. ### `"always"`
  15. There _must always_ be whitespace inside the markers.
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. /*comment*/
  20. ```
  21. <!-- prettier-ignore -->
  22. ```css
  23. /*comment */
  24. ```
  25. <!-- prettier-ignore -->
  26. ```css
  27. /** comment**/
  28. ```
  29. The following patterns are _not_ considered violations:
  30. <!-- prettier-ignore -->
  31. ```css
  32. /* comment */
  33. ```
  34. <!-- prettier-ignore -->
  35. ```css
  36. /** comment **/
  37. ```
  38. <!-- prettier-ignore -->
  39. ```css
  40. /**
  41. * comment
  42. */
  43. ```
  44. <!-- prettier-ignore -->
  45. ```css
  46. /* comment
  47. */
  48. ```
  49. ### `"never"`
  50. There _must never_ be whitespace on the inside the markers.
  51. The following patterns are considered violations:
  52. <!-- prettier-ignore -->
  53. ```css
  54. /* comment */
  55. ```
  56. <!-- prettier-ignore -->
  57. ```css
  58. /*comment */
  59. ```
  60. <!-- prettier-ignore -->
  61. ```css
  62. /** comment**/
  63. ```
  64. The following patterns are _not_ considered violations:
  65. <!-- prettier-ignore -->
  66. ```css
  67. /*comment*/
  68. ```
  69. <!-- prettier-ignore -->
  70. ```css
  71. /****comment****/
  72. ```