-- /file.jsonc --
== should not add but maintain trailing comma also inside of a JSONC file ==
{
  "testing": 123,
  "test1": [1, 2, 3],
  "test2": [
    1, 2, 3],
}

[expect]
{
  "testing": 123,
  "test1": [1, 2, 3],
  "test2": [
    1,
    2,
    3
  ],
}
