• 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
    }
    右侧打赏一下 代码改变世界一块二块也是爱
  • 相关阅读:
    面试中遇到的几道逻辑题目
    [转]计算机专业人工智能方向——研究生面试需知的十大问题
    new、delete、析构函数、自动类型转换
    第三章 传输层
    年后排序+ST表+ksm+矩阵ksm+斐波那契数列矩阵ksm+归并排序
    DP斜率优化
    DP现阶段优化
    平衡树(一)——二叉搜索树
    NOIP 2017-day2
    2017 NOIP2017 day 1
  • 原文地址:https://www.cnblogs.com/ht955/p/14329550.html
Copyright © 2020-2023  润新知