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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # no-eol-whitespace
  2. Disallow end-of-line whitespace.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: pink; }···
  6. /** ↑
  7. * This whitespace */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix most of the problems reported by this rule.
  10. ## Options
  11. ### `true`
  12. The following patterns are considered violations:
  13. <!-- prettier-ignore -->
  14. ```css
  15. a { color: pink; }·
  16. ```
  17. <!-- prettier-ignore -->
  18. ```css
  19. a { color: pink; }····
  20. ```
  21. Comment strings are also checked -- so the following is a violation:
  22. <!-- prettier-ignore -->
  23. ```css
  24. /* something····
  25. * something else */
  26. ```
  27. The following patterns are _not_ considered violations:
  28. <!-- prettier-ignore -->
  29. ```css
  30. a { color: pink; }
  31. ```
  32. <!-- prettier-ignore -->
  33. ```css
  34. /* something
  35. * something else */
  36. ```
  37. ## Optional secondary options
  38. ### `ignore: ["empty-lines"]`
  39. #### `"empty-lines"`
  40. Allow end-of-line whitespace for lines that are only whitespace, "empty" lines.
  41. The following patterns are _not_ considered violations:
  42. <!-- prettier-ignore -->
  43. ```css
  44. a {
  45. color: pink;
  46. ··
  47. background: orange;
  48. }
  49. ```
  50. <!-- prettier-ignore -->
  51. ```css
  52. ····
  53. ```
  54. <!-- prettier-ignore -->
  55. ```css
  56. a { color: pink; }
  57. ····
  58. ```