From this
{
"models": [
{
"id": "foo",
"translate": [
0,
1,
2
]
},
{
"id": "bar",
"translate": [
3,
4,
5
]
}
]
}
To this
{
"models": [
{
"id": "foo",
"translate": [0, 1, 2]
}, {
"id": "bar",
"translate": [3, 4, 5]
}
]
}
I don't know if there's a beautifier that has setting for brackets, I can only find settings for curly braces.