其他分享
首页 > 其他分享> > VSCODE设置保存代码不换行

VSCODE设置保存代码不换行

作者:互联网

删除所有,保留如下

{
    "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
        }
    },
    "window.zoomLevel": 2,
}

标签:false,format,VSCODE,代码,js,换行,html,vetur,wrap
来源: https://www.cnblogs.com/Listener-wy/p/16201329.html