Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 324 Bytes

oelint.tabs.notabs.md

File metadata and controls

26 lines (18 loc) · 324 Bytes

oelint.tabs.notabs

severity: warning

Example

A = "\
<tab>1 \
"

Why is this bad?

The Yocto project style guide discourages the use of tabs.

Ways to fix it

Use spaces instead

A = "\
<spaces>1 \
"