Would it be possible to add tolerance for trailing commas to the jsonc (JSON With Comments) format? Even as an optional setting that is off by default. While I can understand not adding support to the json (spec-compliant) format, there doesn't seem to be a good reason not to add it (either on automatically or configurable) to jsonc.
In case there's any doubt over what I mean, here's an example.
{ "foo": 123, "bar": [ "abc", "def", "ghi", // trailing comma: okay! ], // trailing comma: okay! }