Closed CHRIBUR0309 closed 1 year ago
For example, there is a json file:
{ "a": "あ", "c": { "0": "foo", "1": "bar", }, "b": "い", }
After sorting it with the extension, it will be:
{ "a": "あ", "b": "い", "c": { "0": "foo", "1": "bar" } }
I want an option not to delete the last comma. I mean, I want this json file:
{ "a": "あ", "b": "い", "c": { "0": "foo", "1": "bar", }, }
JSON syntax doesn't allow the last comma...?🤔️
Yep. Trailing comma is not allowed syntax. Sorry.
For example, there is a json file:
After sorting it with the extension, it will be:
I want an option not to delete the last comma. I mean, I want this json file: