json-emacs/json-mode

Indentation of objects inside an array

knu opened this issue · 1 comments

knu commented

json-mode does not indent objects inside an array properly.

Actual:

[
    {
    "key": "value"
}
]

Expected:

[
    {
        "key": "value"
    }
]
knu commented

Thanks, just confirmed that the latest version fixed the problem.