some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / declaration-colon-space-before / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/declaration-colon-space-before/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/declaration-colon-space-before/README.md
deleted file mode 100644 (file)
index 00b087e..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-# declaration-colon-space-before
-
-Require a single space or disallow whitespace before the colon of declarations.
-
-```css
-a { color :pink }
-/**       ↑
- * The space before this colon */
-```
-
-## Options
-
-`string`: `"always"|"never"`
-
-### `"always"`
-
-There *must always* be a single space before the colon.
-
-The following patterns are considered violations:
-
-```css
-a { color: pink }
-```
-
-```css
-a { color:pink }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color : pink }
-```
-
-```css
-a { color :pink }
-```
-
-### `"never"`
-
-There *must never* be whitespace before the colon.
-
-The following patterns are considered violations:
-
-```css
-a { color : pink }
-```
-
-```css
-a { color :pink }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: pink }
-```
-
-```css
-a { color:pink }
-```