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

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