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-scss/src/rules/selector-no-union-class-name/README.md')
-rw-r--r--assets/node_modules/stylelint-scss/src/rules/selector-no-union-class-name/README.md46
1 files changed, 0 insertions, 46 deletions
diff --git a/assets/node_modules/stylelint-scss/src/rules/selector-no-union-class-name/README.md b/assets/node_modules/stylelint-scss/src/rules/selector-no-union-class-name/README.md
deleted file mode 100644
index ef773c9..0000000
--- a/assets/node_modules/stylelint-scss/src/rules/selector-no-union-class-name/README.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# selector-no-union-class-name
-
-Disallow union class names with the parent selector (`&`).
-
-```scss
-.class {
- &-union {
-//↑
-// This type usage of `&`
- }
-}
-```
-
-The following patterns are considered warnings:
-
-```scss
-.class {
- &-union {}
-}
-```
-
-```scss
-.class {
- &_union {}
-}
-```
-
-```scss
-.class {
- &union {}
-}
-```
-
-The following patterns are *not* considered warnings:
-
-```scss
-.class {
- &.foo {}
-}
-```
-
-```scss
-.class {
- & p {}
-}
-```