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 531B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # unicode-bom
  2. Require or disallow the Unicode Byte Order Mark.
  3. ## Options
  4. `string`: `"always"|"never"`
  5. ### `"always"`
  6. The following pattern is considered a violation:
  7. <!-- prettier-ignore -->
  8. ```css
  9. a {}
  10. ```
  11. The following pattern is _not_ considered a violation:
  12. <!-- prettier-ignore -->
  13. ```css
  14. U+FEFF
  15. a {}
  16. ```
  17. ### `"never"`
  18. The following pattern is considered a violation:
  19. <!-- prettier-ignore -->
  20. ```css
  21. U+FEFF
  22. a {}
  23. ```
  24. The following pattern is _not_ considered a violation:
  25. <!-- prettier-ignore -->
  26. ```css
  27. a {}
  28. ```