some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / comment-word-blacklist / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/comment-word-blacklist/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/comment-word-blacklist/README.md
deleted file mode 100644 (file)
index f9f7612..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# comment-word-blacklist
-
-Specify a blacklist of disallowed words within comments.
-
-```css
- /* words within comments */
-/** ↑     ↑      ↑
- * These three words */
-```
-
-**Caveat:** Comments within *selector and value lists* are currently ignored.
-
-## Options
-
-`array|string`: `["array", "of", "words", "or", "/regex/"]|"word"|"/regex/"`
-
-If a string is surrounded with `"/"` (e.g. `"/^TODO:/"`), it is interpreted as a regular expression.
-
-Given:
-
-```js
-["/^TODO:/", "badword"]
-```
-
-The following patterns are considered violations:
-
-```css
-/* TODO: */
-```
-
-```css
-/* TODO: add fallback */
-```
-
-```css
-/* some badword */
-```
-
-The following patterns are *not* considered violations:
-
-```css
-/* comment */
-```