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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # comment-word-disallowed-list
  2. Specify a list of disallowed words within comments.
  3. <!-- prettier-ignore -->
  4. ```css
  5. /* words within comments */
  6. /** ↑ ↑ ↑
  7. * These three words */
  8. ```
  9. **Caveat:** Comments within _selector and value lists_ are currently ignored.
  10. ## Options
  11. `array|string|regexp`: `["array", "of", "words", /or/, "/regex/"]|"word"|"/regex/"`
  12. If a string is surrounded with `"/"` (e.g. `"/^TODO:/"`), it is interpreted as a regular expression.
  13. Given:
  14. ```
  15. ["/^TODO:/", "badword"]
  16. ```
  17. The following patterns are considered violations:
  18. <!-- prettier-ignore -->
  19. ```css
  20. /* TODO: */
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. /* TODO: add fallback */
  25. ```
  26. <!-- prettier-ignore -->
  27. ```css
  28. /* some badword */
  29. ```
  30. The following patterns are _not_ considered violations:
  31. <!-- prettier-ignore -->
  32. ```css
  33. /* comment */
  34. ```