Actualizacion maquina principal
[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
new file mode 100644 (file)
index 0000000..00b087e
--- /dev/null
@@ -0,0 +1,61 @@
+# 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 }
+```