mirror of
https://github.com/adrienverge/yamllint.git
synced 2024-11-26 01:20:15 -06:00
431a379c81
Write all examples from http://www.yaml.org/spec/1.2/spec.html in independent files in tests/yaml-1.2-spec-examples; and test them with yamllint.
13 lines
218 B
Plaintext
13 lines
218 B
Plaintext
# Outside flow collection:
|
|
- ::vector
|
|
- ": - ()"
|
|
- Up, up, and away!
|
|
- -123
|
|
- http://example.com/foo#bar
|
|
# Inside flow collection:
|
|
- [ ::vector,
|
|
": - ()",
|
|
"Up, up and away!",
|
|
-123,
|
|
http://example.com/foo#bar ]
|