admin管理员组

文章数量:1347233

I have a json file. If I run clang-format on it, it formats it as though it's code (ugly).

{
  "name" : "My great app",
           "description" : "It's really cool.",
                           "version" : "0.0.1"
}

If I put 'foo = ' at the start of the file, it's great, but it's not json anymore.

foo = {
  "name" : "My great app",
  "description" : "It's really cool.",
  "version" : "0.0.1"
}

How can I get clang-format to format the bare object in the json file as in the second example?

I have a json file. If I run clang-format on it, it formats it as though it's code (ugly).

{
  "name" : "My great app",
           "description" : "It's really cool.",
                           "version" : "0.0.1"
}

If I put 'foo = ' at the start of the file, it's great, but it's not json anymore.

foo = {
  "name" : "My great app",
  "description" : "It's really cool.",
  "version" : "0.0.1"
}

How can I get clang-format to format the bare object in the json file as in the second example?

Share Improve this question edited Mar 8, 2016 at 0:37 John Slegers 47.1k23 gold badges204 silver badges173 bronze badges asked Mar 8, 2016 at 0:03 Chris ConnettChris Connett 1471 silver badge7 bronze badges 3
  • 2 you could prefix the file with foo =, run clang-format and then remove the prefix. – Igwe Kalu Commented Mar 8, 2016 at 0:09
  • JSON is a format, not a data type of something. U can use native objects and then stringify them to json. – loadaverage Commented Mar 8, 2016 at 0:49
  • Here's some other options: stackoverflow./questions/352098/… – PythonJin Commented Jun 20, 2017 at 5:32
Add a ment  | 

4 Answers 4

Reset to default 3

Another program that I like to use is jq. It's pretty easy to use, and the documentation is great. For example, for simple reformatting you can do this:

jq . test.json

I've been working on getting this accepted, https://reviews.llvm/D93528, this does what you suggest by adding a hidden "x = " at the front of the file, then remove that after formatting using the replacement mechanism.

Until this gets landed I think you could do something similar perhaps with clang-apply-replacements

Personally I'd do it using python, using the json's package pretty printer:

cat mydata.json | python -mjson.tool

and if you don't like the defaults:

cat mydata.json | python -c 'import json, sys; print(json.dumps(json.load(sys.stdin), indent=4, sort_keys=True))'

Otherwise, I don't have clang-format installed, and for the sake of pretty printing, I'd rather use an existing tool.

N.B.: You can also do it within vim and use the == normal mand on the full file selection ☺

If you have json_pp on your system you can also do:

cat test.json | json_pp

本文标签: javascriptclangformat a json fileStack Overflow