mirror of
https://github.com/helix-editor/helix
synced 2026-07-25 10:34:50 +02:00
38 lines
523 B
Plaintext
38 lines
523 B
Plaintext
{
|
|
// unquoted keys, trailing commas, comments
|
|
name: "test",
|
|
version: 1.0,
|
|
nested: {
|
|
value: 1,
|
|
deeper: {
|
|
flag: true,
|
|
},
|
|
},
|
|
list: [
|
|
1,
|
|
2,
|
|
],
|
|
objects: [
|
|
{
|
|
id: 1,
|
|
tags: [
|
|
"a",
|
|
"b",
|
|
],
|
|
},
|
|
{
|
|
id: 2,
|
|
},
|
|
],
|
|
matrix: [
|
|
[
|
|
1,
|
|
2,
|
|
],
|
|
[
|
|
3,
|
|
4,
|
|
],
|
|
],
|
|
}
|