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 \
"
March 17, 2024 ยท View on GitHub
severity: warning
A = "\
<tab>1 \
"
The Yocto project style guide discourages the use of tabs.
Use spaces instead
A = "\
<spaces>1 \
"