vscode 格式化代码双引号

修改 User Settings

在 VS Code 中使用 Ctrl+Shift+P打开命令面板,输入Preferences: Open User Settings或Preferences: Open Workspace Settings。

vscode 格式化代码双引号_第1张图片

添加:

{
    "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,工具方法,vue)