mirror of
https://github.com/thangisme/notes.git
synced 2026-07-29 10:23:50 -04:00
Initial commit
This commit is contained in:
+60
@@ -0,0 +1,60 @@
|
||||
# max-empty-lines
|
||||
|
||||
Limit the number of adjacent empty lines.
|
||||
|
||||
```css
|
||||
a {}
|
||||
/* ← */
|
||||
/* ← */
|
||||
a {} /* ↑ */
|
||||
/** ↑
|
||||
* These lines */
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
`int`: Maximum number of characters allowed.
|
||||
|
||||
For example, with `2`:
|
||||
|
||||
The following patterns are considered warnings:
|
||||
|
||||
```css
|
||||
a {}
|
||||
|
||||
|
||||
|
||||
b {}
|
||||
```
|
||||
|
||||
Comment strings are also checked -- so the following is a warning:
|
||||
|
||||
```css
|
||||
/**
|
||||
* Call me Ishmael.
|
||||
*
|
||||
*
|
||||
*
|
||||
* Some years ago -- never mind how log precisely -- ...
|
||||
*/
|
||||
```
|
||||
|
||||
The following patterns are *not* considered warnings:
|
||||
|
||||
```css
|
||||
a {}
|
||||
b {}
|
||||
```
|
||||
|
||||
```css
|
||||
a {}
|
||||
|
||||
b {}
|
||||
```
|
||||
|
||||
```css
|
||||
a {}
|
||||
|
||||
|
||||
b {}
|
||||
```
|
||||
Reference in New Issue
Block a user