oelint.tabs.notabs

March 17, 2024 ยท View on GitHub

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 \
"

Contents

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