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

1234567891011121314151617181920212223242526272829303132333435363738
  1. # comment-pattern
  2. Specify a pattern for comments.
  3. <!-- prettier-ignore -->
  4. ```css
  5. /* comment */
  6. /** ↑
  7. * The pattern of this */
  8. ```
  9. ## Options
  10. `regex|string`
  11. A string will be translated into a RegExp like so `new RegExp(yourString)` — so be sure to escape properly.
  12. Given the string:
  13. ```
  14. "foo .+"
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. /*not starting with foo*/
  20. a { color: red; }
  21. ```
  22. The following patterns are _not_ considered violations:
  23. <!-- prettier-ignore -->
  24. ```css
  25. /*foo at the beginning*/
  26. a { color: red; }
  27. ```