vscode 设置保存代码 不换行

image.png

进到设置 - 》 使用json格式 替换一下文件

{
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",
    "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_line_length": 240,
            "wrap_attributes": "auto",
            "end_with_newline": false
        },
        "prettyhtml": {
            "printWidth": 100,
            "singleQuote": false,
            "wrapAttributes": false,
            "sortAttributes": false
        }
    },
    "[vue]": {
        "editor.defaultFormatter": "octref.vetur"
    },
    "editor.formatOnSave": true,
}

你可能感兴趣的:(vscode 设置保存代码 不换行)