mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-07 22:35:37 +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>
16 lines
211 B
Plaintext
16 lines
211 B
Plaintext
{
|
|
/*
|
|
multiline block comment
|
|
spanning multiple lines
|
|
*/
|
|
first: 1,
|
|
second/* inline block comment */: 2,
|
|
third: /* before value */ 3,
|
|
fourth: [
|
|
1,
|
|
/* between elements */
|
|
2,
|
|
],
|
|
}
|
|
|