mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-08 13:01:22 -06:00
72 lines
837 B
Markdown
72 lines
837 B
Markdown
# function-max-empty-lines
|
|
|
|
Limit the number of adjacent empty lines within functions.
|
|
|
|
```css
|
|
a {
|
|
transform:
|
|
translate(
|
|
/* ← */
|
|
1, /* ↑ */
|
|
/* ← */
|
|
1 /* ↑ */
|
|
/* ← */
|
|
); /* ↑ */
|
|
} /* ↑ */
|
|
/** ↑
|
|
* These lines */
|
|
```
|
|
|
|
## Options
|
|
|
|
`int`: Maximum number of characters allowed.
|
|
|
|
For example, with `0`:
|
|
|
|
The following patterns are considered warnings:
|
|
|
|
```css
|
|
a {
|
|
transform:
|
|
translate(
|
|
|
|
1,
|
|
1
|
|
);
|
|
}
|
|
```
|
|
|
|
```css
|
|
a {
|
|
transform:
|
|
translate(
|
|
1,
|
|
|
|
1
|
|
);
|
|
}
|
|
```
|
|
|
|
```css
|
|
a {
|
|
transform:
|
|
translate(
|
|
1,
|
|
1
|
|
|
|
);
|
|
}
|
|
```
|
|
|
|
The following patterns are *not* considered warnings:
|
|
|
|
```css
|
|
a {
|
|
transform:
|
|
translate(
|
|
1,
|
|
1
|
|
);
|
|
}
|
|
```
|