0

我在 VS-Code 中尝试了一切settings.json,但没有成功。我有一个里面有对象的数组,不希望它被格式化为新行。

var testdata = [{t: Date.now()-9000,y: 0},{t: Date.now()-8000,y: 0},{t: Date.now()-7000,y: 0},{t: Date.now()-6000,y: 0}];

应保持原样,但键正在移动到新行:

var testdata = [{
        t: Date.now() - 9000,
        y: 0
    }, {
        t: Date.now() - 8000,
        y: 0
    }, {
        t: Date.now() - 7000,
        y: 0
    }, {
        t: Date.now() - 6000,
        y: 0
    }, {
        t: Date.now() - 5000,
        y: 0
    }
]

VS 代码:更漂亮的 5.9.1

试过

  • "html.format.wrapAttributes": "preserve-aligned",
  • "editor.wordWrapColumn": 10000,
  • "html.format.preserveNewLines": true,
  • "prettier.printWidth": 2100,
4

0 回答 0