sspooky13/yaml-standards

New standard: dash is in the same line as key

Opened this issue · 0 comments

Example
Same row

foo:
    - bar
    - baz: qux
    - { bar: baz, qux: quux, quuz: corge }

Separate row

foo:
    - 
        bar
    - 
        baz: qux
    - 
        { bar: baz, qux: quux, quuz: corge }