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/custom-media-pattern/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/custom-media-pattern/README.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/custom-media-pattern/README.md b/assets/node_modules/stylelint/lib/rules/custom-media-pattern/README.md
deleted file mode 100644
index 9f42393..0000000
--- a/assets/node_modules/stylelint/lib/rules/custom-media-pattern/README.md
+++ /dev/null
@@ -1,33 +0,0 @@
-# custom-media-pattern
-
-Specify a pattern for custom media query names.
-
-```css
-@custom-media --foo (max-width: 30em);
-/** ↑
- * The pattern of this */
-```
-
-## Options
-
-`regex|string`
-
-A string will be translated into a RegExp like so `new RegExp(yourString)` — so be sure to escape properly.
-
-Given the string:
-
-```js
-"foo-.+"
-```
-
-The following patterns are considered violations:
-
-```css
-@custom-media --bar (min-width: 30em);
-```
-
-The following patterns are *not* considered violations:
-
-```css
-@custom-media --foo-bar (min-width: 30em);
-```