some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / block-no-empty / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/block-no-empty/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/block-no-empty/README.md
deleted file mode 100644 (file)
index 0623bb7..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# block-no-empty
-
-Disallow empty blocks.
-
-```css
- a { }
-/** ↑
- * Blocks like this */
-```
-
-## Options
-
-### `true`
-
-The following patterns are considered violations:
-
-```css
-a {}
-```
-
-```css
-a { }
-```
-
-```css
-@media print { a {} }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: pink; }
-```
-
-```css
-@media print { a { color: pink; } }
-```