Hi!
I’ve been using this little plugin for a while now, and I think it’s worth sharing.
JSONComma is a plugin that removes trailing commas, and adds needed ones!
{
"hello": "world",
- "not needed": "damn comma",
+ "not needed": "damn comma"
}
Adds needed commas!
{
- "hello": "world"
- "not needed": "damn comma"
+ "hello": "world",
+ "not needed": "damn comma",
"aList": [
- "hello" "world"
- "this" "is" "a nasty ]{ example ] "
- ["BUT" "IT" "STILL" "WORKS!!"]
+ "hello", "world",
+ "this", "is", "a nasty ]{ example ] ",
+ ["BUT", "IT", "STILL", "WORKS!!"]
]
}
Matt