Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 376 Bytes

oelint.spaces.linecont.md

File metadata and controls

28 lines (20 loc) · 376 Bytes

oelint.spaces.linecont

severity: error

Example

A = "\<space>
 1 \
 2 \
"

Why is this bad?

Space(s) after the line continuation character \ should be avoided. They do not add value and have been an illegal syntax in some versions of bitbake.

Ways to fix it

Remove all spaces after the line continuation character \

A = "\
 1 \
 2 \
"