Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / color-hex-case / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-hex-case/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/color-hex-case/README.md
new file mode 100644 (file)
index 0000000..86d93d1
--- /dev/null
@@ -0,0 +1,51 @@
+# color-hex-case
+
+Specify lowercase or uppercase 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`: `"lower"|"upper"`
+
+### `"lower"`
+
+The following patterns are considered violations:
+
+```css
+a { color: #FFF; }
+```
+
+The following patterns are *not* considered violations:
+
+```css
+a { color: #000; }
+```
+
+```css
+a { color: #fff; }
+```
+
+### `"upper"`
+
+The following patterns are considered violations:
+
+```css
+a { color: #fff; }
+```
+
+The following patterns are *not* considered violations:
+
+```css
+a { color: #000; }
+```
+
+```css
+a { color: #FFF; }
+```