X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=.config%2Fcoc%2Fextensions%2Fnode_modules%2Fcoc-prettier%2Fnode_modules%2Fstylelint%2Flib%2Frules%2Fvalue-list-comma-space-before%2FREADME.md;fp=.config%2Fcoc%2Fextensions%2Fnode_modules%2Fcoc-prettier%2Fnode_modules%2Fstylelint%2Flib%2Frules%2Fvalue-list-comma-space-before%2FREADME.md;h=0000000000000000000000000000000000000000;hb=3ddadb3c98564791f0ac36cb39771d844a63dc91;hp=a1174c6034e967323d11465fce436c9ccdb4261d;hpb=5f797af6612ed10887189b47a1efc2f915586e59;p=dotfiles%2F.git diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/value-list-comma-space-before/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/value-list-comma-space-before/README.md deleted file mode 100644 index a1174c60..00000000 --- a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/value-list-comma-space-before/README.md +++ /dev/null @@ -1,117 +0,0 @@ -# value-list-comma-space-before - -Require a single space or disallow whitespace before the commas of value lists. - -```css -a { background-size: 0 ,0; } -/** ↑ - * The space before these commas */ -``` - -## Options - -`string`: `"always"|"never"|"always-single-line"|"never-single-line"` - -### `"always"` - -There *must always* be a single space 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; } -``` - -```css -a { background-size: 0 , - 0; } -``` - -### `"never"` - -There *must never* be whitespace 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; } -``` - -```css -a { background-size: 0, - 0; } -``` - -### `"always-single-line"` - -There *must always* be a single space before the commas in single-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-single-line"` - -There *must never* be whitespace before the commas in single-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; } -```