VSCode

右下setting, 搜索setting.json
 
{
    "editor.fontSize": 14,
    "editor.tabSize": 4,
    "editor.detectIndentation": true,
    "update.mode": "none",
    "editor.formatOnSave": true,
    "search.followSymlinks": false,
    "[javascript]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "[html]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "javascript.updateImportsOnFileMove.enabled": "always",
    "beautify.config": "",
    "beautify.language": {
        "html": [
            "htm",
            "html",
            "vue"
        ],
        "js": {
            "type": [
                "javascript",
                "json"
            ],
            "filename": [
                ".jshintrc",
                ".jsbeautify"
            ]
        },
        "css": [
            "css",
            "scss",
            "less"
        ]
    },
    "[vue]": {
        "editor.defaultFormatter": "HookyQR.beautify"
    },
    "beautify.ignore": "",
}
原文地址:https://www.cnblogs.com/HePandeFeng/p/13895530.html