vscode settings.json配置

{
    "workbench.iconTheme": "vscode-icons",
    "vsicons.dontShowNewVersionMessage": true,
    "terminal.integrated.profiles.windows": {
        "Git Bash": {
            "path": "C:\Windows\System32\cmd.exe",
            "args": []
        }
    },
    "terminal.integrated.defaultProfile.windows": "Git Bash",
    "editor.wordWrap": "on",
    "liveServer.settings.donotShowInfoMsg": true,
    "editor.formatOnPaste": true,
    "editor.formatOnType": true,
    "editor.formatOnSave": true,
    "eslint.codeAction.showDocumentation": {
        "enable": true
    },
    "editor.codeActionsOnSave": {
        "eslint.autoFixOnSave": false,
        "source.fixAll": true,
        "source.fixAll.eslint": true
    },
    "eslint.validate": [
        "javascript",
        "vue",
        "html",
        "go"
    ],
    "[javascript]": {
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "php.validate.executablePath": null,
    "eslint.format.enable": true,
    "scss.lint.important": "warning",
    "less.lint.important": "warning",
    "css.lint.important": "warning",
    "[html]": {
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "[vue]": {
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "[go]": {
        "editor.defaultFormatter": "dbaeumer.vscode-eslint"
    },
    "background.customImages": [
        "file:///E:/chajian/longmaoone.jpg"
    ],
    "background.enabled": true,
    "background.useDefault": false,
    "background.style": {
        "content": "''",
        "pointer-events": "none",
        "position": "absolute",
        "z-index": "99999",
        "width": "100%",
        "height": "100%",
        "background-position": "center",
        "background-repeat": "no-repeat",
        "background-size": "100%,100%",
        "opacity": 0.2
    },
    "editor.suggestSelection": "first",
    "files.autoSave": "off",
    "editor.suggest.shareSuggestSelections": false,
    "files.associations": {
        "*.cjson": "jsonc",
        "*.wxss": "css",
        "*.wxs": "javascript"
    },
    "emmet.includeLanguages": {
        "wxml": "html"
    },
    "minapp-vscode.disableAutoConfig": true
}
右侧打赏一下 代码改变世界一块二块也是爱
原文地址:https://www.cnblogs.com/ht955/p/14329550.html