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/selector-pseudo-element-blacklist/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/README.md49
1 files changed, 0 insertions, 49 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/README.md b/assets/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/README.md
deleted file mode 100644
index e972f59..0000000
--- a/assets/node_modules/stylelint/lib/rules/selector-pseudo-element-blacklist/README.md
+++ /dev/null
@@ -1,49 +0,0 @@
-# selector-pseudo-element-blacklist
-
-Specify a blacklist of disallowed pseudo-element selectors.
-
-```css
- a::before {}
-/** ↑
- * This pseudo-element selector */
-```
-
-This rule ignores:
-
-- CSS2 pseudo-elements i.e. those prefixed with a single colon
-- selectors that use variable interpolation e.g. `::#{$variable} {}`
-
-## Options
-
-`array|string|regex`: `["array", "of", "unprefixed", "pseudo-elements" or "regex"]|"pseudo-element"|/regex/`
-
-Given:
-
-```js
-["before", "/^my-/i"]
-```
-
-The following patterns are considered violations:
-
-```css
-a::before {}
-```
-
-```css
-a::my-pseudo-element {}
-```
-
-```css
-a::MY-OTHER-pseudo-element {}
-```
-
-
-The following patterns are *not* considered violations:
-
-```css
-a::after {}
-```
-
-```css
-a::not-my-pseudo-element {}
-```