js-beautify配置对象数组

时间:2018-04-03 17:26:52

标签: json js-beautify

有没有办法配置js-beautify以保持以下格式:

"structure": [
  {
    "name": "heading",
    "text": "",
    "default": "",
    "type": "string"
  },
  {
    "name": "flickr-album-id",
    "text": "",
    "type": "string"
  },
]

js-beautify将第一个对象的大括号拉入第一行。我知道选项keep_array_indentation,但我不想禁用常规自动缩进,因为错误不会得到修复。

js-beautify的结果 - 我想要阻止 - 将是

"structure": [{
    "name": "heading",
    "text": "",
    "default": "",
    "type": "string"
  },
  {
    "name": "flickr-album-id",
    "text": "",
    "type": "string"
  },
]

0 个答案:

没有答案