美文网首页
自用vscode插件

自用vscode插件

作者: 不知不怪 | 来源:发表于2021-03-11 23:58 被阅读0次
    image.png
    image.png
    {
        "editor.fontSize": 20,
        "workbench.startupEditor": "newUntitledFile",
        "workbench.colorTheme": "Visual Studio Light",
        "vetur.format.defaultFormatter.html": "js-beautify-html",
        "vetur.format.defaultFormatterOptions": {
            "js-beautify-html": {
                "wrap_line_length": 280,
                "end_with_newline": false,
                "wrap_attributes": "auto",
                "wrap_attributes_mode": "auto",
                "wrapped_attributes_per_line": "multiple",
                "wrapped_attributes_indent": "auto",
                "wrapped_attributes_end": "auto"
            },
            "prettyhtml": {
                "printWidth": 280,
                "singleQuote": false,
                "wrapAttributes": false,
                "semi": true, // 有无分号
                "sortAttributes": true // 单引号
            }
        },
        "editor.wordWrapColumn": 280,
        "auto-close-tag.activationOnLanguage": [
    
            "xml",
            "php",
            "blade",
            "ejs",
            "jinja",
            "javascript",
            "javascriptreact",
            "typescript",
            "typescriptreact",
            "plaintext",
            "markdown",
            "vue",
            "liquid",
            "erb",
            "lang-cfml",
            "cfml",
            "HTML (EEx)",
            "HTML (Eex)",
            "plist"
        ],
        "[javascript]": {
            "editor.defaultFormatter": "HookyQR.beautify"
        },
        "auto-rename-tag.activationOnLanguage": [
    
            "*"
        ],
    
        "files.exclude": {
            "**/.vscode": true,
            "**/node_modules": true,
            "**/.history": true,
            "**/public": true
        },
        "editor.minimap.enabled": false
    }
    

    相关文章

      网友评论

          本文标题:自用vscode插件

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