yq/examples/sample.json5
Robin H. Johnson 76dc8dcae8
feat: JSON5 support
Reference: https://spec.json5.org/
Co-authored-by: Codex <codex@openai.com>
Generated-with: OpenAI Codex CLI (partial)
Signed-off-by: Robin H. Johnson <rjohnson@coreweave.com>
2026-01-13 19:59:04 -08:00

19 lines
246 B
Plaintext

// JSON5 example file for yq
{
// comments
unquotedKey: 'single quoted string',
trailingCommaArray: [1, 2,],
// numbers
hexInt: 0x10,
posInf: Infinity,
negInf: -Infinity,
notANumber: NaN,
nested: {
a: 1,
b: 2,
},
}