summaryrefslogtreecommitdiffstats
path: root/test/fixtures/formatting-after/fmt-2.yml
blob: a162721772bdeaf1021f83bc5a617afe601b4610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# preamble/header comment
---
# initial comment
- foo: bar

- baz: # over indented
    - qwerty
    - foobar
  animals: # under indented
    - crow
    - pig
    - giraffe

- nothing: # null

- octal:
    - "0o123" # YAML 1.2 octal
    - "0123" # YAML 1.1 octal

- integer:
    - 0 # Not an octal. See #2071
    - 10
    - 9999
  zero: 0 # Not an octal. See #2071