~~ array.preferSingleLine: true, lineWidth: 40 ~~
== should prefer collapsing the JSON array to a single line ==
{
  "prop": [
    1,
    2
  ],
  "prop2": [
    "testing this out",
    "testing testing test"
  ]
}

[expect]
{
  "prop": [1, 2],
  "prop2": [
    "testing this out",
    "testing testing test"
  ]
}
