some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / color-hex-length / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-hex-length/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-hex-length/README.md
deleted file mode 100644 (file)
index b7747a3..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-# color-hex-length
-
-Specify short or long notation for hex colors.
-
-```css
-a { color: #fff }
-/**        ↑
- * These hex colors */
-```
-
-The `--fix` option on the [command line](../../../docs/user-guide/cli.md#autofixing-errors) can automatically fix all of the problems reported by this rule.
-
-## Options
-
-`string`: `"short"|"long"`
-
-### `"short"`
-
-The following patterns are considered violations:
-
-```css
-a { color: #ffffff; }
-```
-
-```css
-a { color: #ffffffaa; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: #fff; }
-```
-
-```css
-a { color: #fffa; }
-```
-
-```css
-a { color: #a4a4a4; }
-```
-
-### `"long"`
-
-The following patterns are considered violations:
-
-```css
-a { color: #fff; }
-```
-
-```css
-a { color: #fffa; }
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a { color: #ffffff; }
-```
-
-```css
-a { color: #ffffffaa; }
-```