Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 251 Bytes

oelint.spaces.linebeginning.md

File metadata and controls

21 lines (13 loc) · 251 Bytes

oelint.spaces.linebeginning

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"