jsonabc icon indicating copy to clipboard operation
jsonabc copied to clipboard

Support for JSON5

Open bennycode opened this issue 2 years ago • 0 comments

I love this extension! But I noticed that jsonAbc.sortObj removes comments from JSON5 files. Would it be possible to keep these during sorting?

Input:

{
  // XYZ
  "xyz": "xyz",
  // ABC
  "abc": "abc"
}

Current Output:

{
  "abc": "abc",
  "xyz": "xyz"
}

Expected Output:

{
  // ABC
  "abc": "abc",
  // XYZ
  "xyz": "xyz"
}

bennycode avatar Oct 11 '23 10:10 bennycode