# Indentation variants. All of these are valid YAML; linters and formatters disagree about which
# to enforce, and a rewriter that normalises them changes bytes without changing meaning — which
# matters when the file is under review or checksum.
sequence_flush_with_key:
- one
- two

sequence_indented_under_key:
  - one
  - two

map_two_space:
  a: 1
  b: 2

map_four_space:
    a: 1
    b: 2

irregular_but_legal:
      deeply:
            nested: value

sequence_of_maps_flush:
- name: build
  needs: []
- name: test
  needs:
  - build

sequence_of_maps_indented:
  - name: build
    needs: []
  - name: test
    needs:
      - build
