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-max-combinators/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/selector-max-combinators/README.md63
1 files changed, 0 insertions, 63 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/selector-max-combinators/README.md b/assets/node_modules/stylelint/lib/rules/selector-max-combinators/README.md
deleted file mode 100644
index b0ddfb9..0000000
--- a/assets/node_modules/stylelint/lib/rules/selector-max-combinators/README.md
+++ /dev/null
@@ -1,63 +0,0 @@
-# selector-max-combinators
-
-Limit the number of combinators in a selector.
-
-```css
- a > b + c ~ d e { color: pink; }
-/** ↑ ↑ ↑ ↑
- * These are combinators */
-```
-
-This rule resolves nested selectors before counting the number of combinators selectors. Each selector in a [selector list](https://www.w3.org/TR/selectors4/#selector-list) is evaluated separately.
-
-## Options
-
-`int`: Maximum combinators selectors allowed.
-
-For example, with `2`:
-
-The following patterns are considered violations:
-
-```css
-a b ~ c + d {}
-```
-
-```css
-a b ~ c {
- & > d {}
-}
-```
-
-```css
-a b {
- & ~ c {
- & + d {}
- }
-}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a {}
-```
-
-```css
-a b {}
-```
-
-```css
-a b ~ c {}
-```
-
-```css
-a b {
- & ~ c {}
-}
-```
-
-```css
-/* each selector in a selector list is evaluated separately */
-a b,
-c > d {}
-```