Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / rules / at-rule-no-unknown / README.md
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md
new file mode 100644 (file)
index 0000000..72f79f6
--- /dev/null
@@ -0,0 +1,65 @@
+# at-rule-no-unknown
+
+Disallow unknown at-rules.
+
+```css
+    @unknown (max-width: 960px) {}
+/** ↑
+ * At-rules like this */
+```
+
+This rule considers at-rules defined in the CSS Specifications, up to and including Editor's Drafts, to be known.
+
+## Options
+
+### `true`
+
+The following patterns are considered violations:
+
+```css
+@unknown {}
+```
+
+The following patterns are *not* considered violations:
+
+```css
+@charset "UTF-8";
+```
+
+```css
+@CHARSET "UTF-8";
+```
+
+```css
+@media (max-width: 960px) {}
+```
+
+```css
+@font-feature-values Font One {
+  @styleset {}
+}
+```
+
+## Optional secondary options
+
+### `ignoreAtRules: ["/regex/", "string"]`
+
+Given:
+
+```js
+["/^my-/", "custom"]
+```
+
+The following patterns are *not* considered violations:
+
+```css
+@my-at-rule "x.css";
+```
+
+```css
+@my-other-at-rule {}
+```
+
+```css
+@custom {}
+```