Pattern: Too many empty lines in function
Issue: -
Limit the number of adjacent empty lines within functions.
int
: Maximum number of characters allowed.
For example, with 0
:
The following patterns are considered violations:
a {
transform:
translate(
1,
1
);
}
a {
transform:
translate(
1,
1
);
}
a {
transform:
translate(
1,
1
);
}
The following patterns are not considered violations:
a {
transform:
translate(
1,
1
);
}