Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md65
1 files changed, 65 insertions, 0 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md b/assets/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md
new file mode 100644
index 0000000..cd345a7
--- /dev/null
+++ b/assets/node_modules/stylelint/lib/rules/at-rule-no-unknown/README.md
@@ -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/", /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 {}
+```