1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 04:10:42 +00:00
notes/node_modules/stylelint/lib/rules/function-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

function-max-empty-lines

Limit the number of adjacent empty lines within functions.

a {
  transform:
    translate(
                /* ← */
      1,        /* ↑ */ 
                /* ← */
      1         /* ↑ */
                /* ← */
    );          /* ↑ */
}               /* ↑ */
/**                ↑
 *            These lines */

Options

int: Maximum number of characters allowed.

For example, with 0:

The following patterns are considered warnings:

a {
  transform:
    translate(

      1,
      1
    );
}
a {
  transform:
    translate(
      1,

      1
    );
}
a {
  transform:
    translate(
      1,
      1

    );
}

The following patterns are not considered warnings:

a {
  transform: 
    translate(
      1, 
      1
    );
}