欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vscode 格式化代码双引号

程序员文章站 2022-07-05 16:58:01
...
{
    "workbench.startupEditor": "newUntitledFile",
    "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
          // force-aligned | force-expand-multiline
          "wrap_attributes": "force-aligned"
        },
        "prettyhtml": {
          "printWidth": 100,
          "singleQuote": false,
          "wrapAttributes": false,
          "sortAttributes": true
        },
        "prettier": {
            "semi": false,
            "singleQuote": true
        }
      },
}

位置:


vscode 格式化代码双引号
image.png