Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / media-feature-name-no-vendor-prefix / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/README.md
new file mode 100644 (file)
index 0000000..c0ec0e8
--- /dev/null
@@ -0,0 +1,39 @@
+# media-feature-name-no-vendor-prefix
+
+Disallow vendor prefixes for media feature names.
+
+```css
+@media (-webkit-min-device-pixel-ratio: 1) {}
+/**      ↑
+ * These prefixes */
+```
+
+Right now this rule simply checks for prefixed *resolutions*.
+
+## Options
+
+### `true`
+
+The following patterns are considered violations:
+
+```css
+@media (-webkit-min-device-pixel-ratio: 1) {}
+```
+
+```css
+@media (min--mox-device-pixel-ratio: 1) {}
+```
+
+```css
+@media (-o-max-device-pixel-ratio: 1/1) {}
+```
+
+The following patterns are *not* considered violations:
+
+```css
+@media (min-resolution: 96dpi) {}
+```
+
+```css
+@media (max-resolution: 900dpi) {}
+```