oelint.newline.consecutive

March 17, 2024 ยท View on GitHub

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"