notes/node_modules/stylelint/lib/rules/function-max-empty-lines/README.md

837 B

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
    );
}