1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-24 13:35:34 +00:00
notes/node_modules/stylelint/lib/rules/value-list-max-empty-lines
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

value-list-max-empty-lines

Limit the number of adjacent empty lines within value lists.

a {
  box-shadow:
    inset 0 2px 0 #dcffa6,
                    /* ← */
    0 2px 5px #000; /* ↑ */
}                   /* ↑ */
/**                    ↑
 *       This empty line */

Options

int: Maximum number of empty lines.

For example, with 0:

The following patterns are considered warnings:

a {
  padding: 10px

    10px
    10px
    10px
}
a {
  padding: 
    10px
    10px
    10px

    10px
}
a {
  box-shadow: inset 0 2px 0 #dcffa6,

    0 2px 5px #000;
}
a {
  box-shadow:
    inset 0 2px 0 #dcffa6,

    0 2px 5px #000;
}

The following patterns are not considered warnings:

a {
  padding: 10px 10px 10px 10px
}
a {
  padding: 10px
    10px
    10px
    10px
}
a {
  padding:
    10px
    10px
    10px
    10px
}
a {
  box-shadow: inset 0 2px 0 #dcffa6, 0 2px 5px #000;
}
a {
  box-shadow: inset 0 2px 0 #dcffa6,
    0 2px 5px #000;
}
a {
  box-shadow:
    inset 0 2px 0 #dcffa6,
    0 2px 5px #000;
}