mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-08 06:45:38 +00:00
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>
19 lines
246 B
Plaintext
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,
|
|
},
|
|
}
|
|
|