It creates rules for managing empty lines:
- Require empty line in the beginning
- Require empty line in the end
- Require empty line before we go out from nesting
- Require empty line between siblings (if there are more than 2 siblings)
- Prohibit more than 1 empty line
- Prohibit empty line for nested items
The following patterns are considered warnings:
pug`
div Hello`
pug`
div One
div Two
div Three
`
pug`
div
div Nested
div Outside
`
pug`
div
div Nested
`
The following patterns are not considered warnings:
pug`div Hello`
pug`
div Hello
`
pug`
div One
div Two
div Three
`
pug`
div
div Nested
div Outside
`
pug`
div
div Nested
`
If you don't want to have consistency in empty lines.