some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / value-list-comma-newline-before / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/value-list-comma-newline-before/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/value-list-comma-newline-before/README.md
deleted file mode 100644 (file)
index 7e6ed26..0000000
+++ /dev/null
@@ -1,88 +0,0 @@
-# value-list-comma-newline-before
-
-Require a newline or disallow whitespace before the commas of value lists.
-
-```css
-  a { background-size: 0
-    , 0; }
-/** ↑
- * The newline before these commas */
-```
-
-## Options
-
-`string`: `"always"|"always-multi-line"|"never-multi-line"`
-
-### `"always"`
-
-There *must always* be a newline before the commas.
-
-The following patterns are considered violations:
-
-```css
-a { background-size: 0,0; }
-```
-
-```css
-a { background-size: 0,
-      0; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { background-size: 0
-      , 0; }
-```
-
-### `"always-multi-line"`
-
-There *must always* be a newline before the commas in multi-line value lists.
-
-The following patterns are considered violations:
-
-```css
-a { background-size: 0,
-      0; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { background-size: 0, 0; }
-```
-
-```css
-a { background-size: 0,0; }
-```
-
-```css
-a { background-size: 0
-      , 0; }
-```
-
-### `"never-multi-line"`
-
-There *must never* be whitespace before the commas in multi-line value lists.
-
-The following patterns are considered violations:
-
-```css
-a { background-size: 0
-      , 0; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { background-size: 0,0; }
-```
-
-```css
-a { background-size: 0, 0; }
-```
-
-```css
-a { background-size: 0,
-      0; }
-```