oelint.spaces.linebeginning

March 17, 2024 ยท View on GitHub

severity: warning

Example

 A = "2"

Why is this bad?

Spaces or tabs at the beginning of a newline decrease readability and do not add value.

Ways to fix it

Remove the leading spaces

A = "2"

Contents

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