oelint.spaces.emptyline

March 17, 2024 ยท View on GitHub

severity: warning

Example

A = "2"
<spaces>
B = "2"

Why is this bad?

Spaces or tabs in empty lines do not add any additional value.

Ways to fix it

A = "2"

B = "2"

Contents

  1. 1Example
  2. 2Why is this bad?
  3. 3Ways to fix it