some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / comment-no-empty / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/comment-no-empty/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/comment-no-empty/README.md
deleted file mode 100644 (file)
index 2983891..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# comment-no-empty
-
-Disallow empty comments.
-
-```css
-    /* */
-/** ↑
- * Comments like this */
-```
-
-**Caveat:** Comments within *selector and value lists* are currently ignored.
-
-## Options
-
-### `true`
-
-The following patterns are considered violations:
-
-```css
-/**/
-```
-
-```css
-/* */
-```
-
-```css
-/*
-
- */
-```
-
-The following patterns are *not* considered violations:
-
-```css
-/* comment */
-```
-
-```css
-/*
- * Multi-line Comment
-**/
-```