Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 318 Bytes

oelint.vars.summarylinebreaks.md

File metadata and controls

21 lines (13 loc) · 318 Bytes

oelint.vars.summarylinebreaks

severity: warning

Example

In any bitbake recipe

SUMMARY = "a\nb\nc"

Why is this bad?

The OpenEmbedded Style guide requires SUMMARY a single line

Ways to fix it

SUMMARY = "a b c"