Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 260 Bytes

oelint.newline.consecutive.md

File metadata and controls

26 lines (15 loc) · 260 Bytes

oelint.newline.consecutive

severity: warning

Example

A = "2"


B = "1"

Why is this bad?

Consecutive empty lines decrease readability and do not add any additional value.

Ways to fix it

Remove the empty lines

A = "2"

B = "1"