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/value-list-max-empty-lines/README.md')
-rw-r--r--assets/node_modules/stylelint/lib/rules/value-list-max-empty-lines/README.md110
1 files changed, 0 insertions, 110 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/value-list-max-empty-lines/README.md b/assets/node_modules/stylelint/lib/rules/value-list-max-empty-lines/README.md
deleted file mode 100644
index f95d587..0000000
--- a/assets/node_modules/stylelint/lib/rules/value-list-max-empty-lines/README.md
+++ /dev/null
@@ -1,110 +0,0 @@
-# value-list-max-empty-lines
-
-Limit the number of adjacent empty lines within value lists.
-
-```css
-a {
- box-shadow:
- inset 0 2px 0 #dcffa6,
- /* ← */
- 0 2px 5px #000; /* ↑ */
-} /* ↑ */
-/** ↑
- * This empty line */
-```
-
-The `--fix` option on the [command line](../../../docs/user-guide/cli.md#autofixing-errors) can automatically fix all of the problems reported by this rule.
-
-## Options
-
-`int`: Maximum number of adjacent empty lines allowed.
-
-For example, with `0`:
-
-The following patterns are considered violations:
-
-```css
-a {
- padding: 10px
-
- 10px
- 10px
- 10px
-}
-```
-
-```css
-a {
- padding:
- 10px
- 10px
- 10px
-
- 10px
-}
-```
-
-```css
-a {
- box-shadow: inset 0 2px 0 #dcffa6,
-
- 0 2px 5px #000;
-}
-```
-
-```css
-a {
- box-shadow:
- inset 0 2px 0 #dcffa6,
-
- 0 2px 5px #000;
-}
-```
-
-The following patterns are *not* considered violations:
-
-```css
-a {
- padding: 10px 10px 10px 10px
-}
-```
-
-```css
-a {
- padding: 10px
- 10px
- 10px
- 10px
-}
-```
-
-```css
-a {
- padding:
- 10px
- 10px
- 10px
- 10px
-}
-```
-
-```css
-a {
- box-shadow: inset 0 2px 0 #dcffa6, 0 2px 5px #000;
-}
-```
-
-```css
-a {
- box-shadow: inset 0 2px 0 #dcffa6,
- 0 2px 5px #000;
-}
-```
-
-```css
-a {
- box-shadow:
- inset 0 2px 0 #dcffa6,
- 0 2px 5px #000;
-}
-```