This is rather subjective, but the rationale for this is that serialized json-object is ,-delimited sequence of :-delimited pairs, so having an extra whitespace between the elements would make it easier to visually parse.
e.g.
{"foo":1,"bar":[123,456],"baz":"qux,quux","quuz":true,"corge":"grault"}
vs
{"foo":1, "bar":[123,456], "baz":"qux,quux", "quuz":true, "corge":"grault"}
This would be a one-line change.
This is rather subjective, but the rationale for this is that serialized json-object is
,-delimited sequence of:-delimited pairs, so having an extra whitespace between the elements would make it easier to visually parse.e.g.
This would be a one-line change.