vscode相关配置

一、插件

vscode相关配置_第1张图片

 

二、首先项设置:

{
    "git.enableSmartCommit": true,
    "gitlens.advanced.messages": {
        "suppressShowKeyBindingsNotice": true
    },
    "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
            "language": "vue",
            "autoFix": true
        }
    ],
    "eslint.autoFixOnSave": true,
    "bracketPairColorizer.consecutivePairColors": [
        [
            ",
            ">"
        ],
        [
            "<",
            "/>"
        ],
        "<>",
        "()",
        "[]",
        "{}",
        [
            "White",
            "Orange",
            "LightSkyBlue"
        ],
        "Red"
    ],
}

 

转载于:https://www.cnblogs.com/wzz1020/p/9322575.html

你可能感兴趣的:(git,开发工具,javascript)