js-beautify
js-beautify copied to clipboard
recursively sort json dicts by keys
Description
recursively sort json dicts by keys, mainly for json files disabled by default, and add an option to enable it
Input
With this new feature, when I give like this input:
{
"b" : "b",
"c" : {
"b" : "b",
"a" : "a"
},
"a" : ["array", "not", "affected"]
}
Expected Output
I'd like to see this output:
{
"a" : ["array", "not", "affected"],
"b" : "b",
"c" : {
"a" : "a",
"b" : "b"
}
}
Environment
OS: all
I would like to solve this issue. It's my first fix can get some help on the procedure?
I am done with code Can Someone help me with how and where I can add my code?
i would like to work on this and this will be my first contribute
Completed it and in which file or directory shall it update it ?
Um, submit a pull request?