mirror of
https://github.com/thangisme/notes.git
synced 2026-06-11 05:29:19 -04:00
92 lines
744 B
Markdown
92 lines
744 B
Markdown
|
|
# selector-max-empty-lines
|
||
|
|
|
||
|
|
Limit the number of adjacent empty lines within selectors.
|
||
|
|
|
||
|
|
```css
|
||
|
|
a,
|
||
|
|
/* ← */
|
||
|
|
b { /* ↑ */
|
||
|
|
color: red; /* ↑ */
|
||
|
|
} /* ↑ */
|
||
|
|
/** ↑
|
||
|
|
* This empty line */
|
||
|
|
```
|
||
|
|
|
||
|
|
## Options
|
||
|
|
|
||
|
|
`int`: Maximum number of empty lines.
|
||
|
|
|
||
|
|
For example, with `0`:
|
||
|
|
|
||
|
|
The following patterns are considered warnings:
|
||
|
|
|
||
|
|
```css
|
||
|
|
a
|
||
|
|
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a,
|
||
|
|
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a
|
||
|
|
|
||
|
|
>
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a
|
||
|
|
>
|
||
|
|
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
The following patterns are *not* considered warnings:
|
||
|
|
|
||
|
|
```css
|
||
|
|
a b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a,
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a > b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
```css
|
||
|
|
a
|
||
|
|
>
|
||
|
|
b {
|
||
|
|
color: red;
|
||
|
|
}
|
||
|
|
```
|