我有一个 json 文件。如果我在其上运行 clang-format,它会将其格式化为代码(丑陋)。
{
"name" : "My great app",
"description" : "It's really cool.",
"version" : "0.0.1"
}
如果我将 'foo = ' 放在文件的开头,那就太好了,但它不再是 json 了。
foo = {
"name" : "My great app",
"description" : "It's really cool.",
"version" : "0.0.1"
}
如何获得 clang-format 以格式化 json 文件中的裸对象,如第二个示例所示?