Fix JSON allowing multiple fields on the same line

Previously, the coding style configuration preferred

{
    "firstName": "John", "lastName": "Doe"
}

We would like to avoid multiple values on the same line; we prefer

{
    "firstName": "John",
    "lastName": "Doe"
}

Closes #14 (closed)

Merge request reports

Loading