美文网首页
VSCode Beautify插件配置

VSCode Beautify插件配置

作者: LeslieLiang | 来源:发表于2020-09-01 10:06 被阅读0次
    {
        "editor.fontSize": 16,
        "editor.tabSize": 4,
        "editor.detectIndentation": false,
        "update.mode": "none",
        "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"
        }
    }
    

    相关文章

      网友评论

          本文标题:VSCode Beautify插件配置

          本文链接:https://www.haomeiwen.com/subject/thgmsktx.html