-
Notifications
You must be signed in to change notification settings - Fork 155
Closed
Description
Given this minified JSON:
{"tokens":{"access":["access1","access2","access3","access4","access5"],"completion":"completion1","signature":"tokenSig"}}
The formatted JSON is:
{
"tokens": {
"access": ["access1",
"access2",
"access3",
"access4",
"access5"],
"completion": "completion1",
"signature": "tokenSig"
}
}
I think this obscures the level of hierarchy introduced by the nested array. It should probably be more like this:
{
"tokens": {
"access": [
"access1",
"access2",
"access3",
"access4",
"access5"
],
"completion": "completion1",
"signature": "tokenSig"
}
}
Super useful plugin, thanks!
Metadata
Metadata
Assignees
Labels
No labels