Sorting doesn't seem to take the ending commas into account when sorting. This is problematic if you have something like this
export default {
"c": "c",
"b": "b",
"a": "a"
}
This will result in
export default {
"a": "a"
"b": "b",
"c": "c",
}
Which is now invalid 😢.