zoukankan      html  css  js  c++  java
  • 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
    }
    右侧打赏一下 代码改变世界一块二块也是爱
  • 相关阅读:
    OpenSSL EVP_Digest系列函数的一个样例
    简单的函数指针使用
    写入简单的日志log
    C实现日志等级控制
    散列表
    数据结构-链表
    关于线程的几个函数
    MySQL什么时候会使用内部临时表?
    linux如何处理多连接请求?
    Centos下搭建nginx反向代理
  • 原文地址:https://www.cnblogs.com/ht955/p/14329550.html
Copyright © 2011-2022 走看看