zoukankan      html  css  js  c++  java
  • vscode 个人配置

    setting。json
    {
        "files.associations": {
            "*.cjson": "jsonc",
            "*.wxss": "css",
            "*.wxs": "javascript"
        },
        "emmet.includeLanguages": {
            "wxml": "html"
        },
        "minapp-vscode.disableAutoConfig": true,
        "standard.enable": true,
        "standard.autoFixOnSave": true,
        "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
        "eslint.validate": [
            "javascript",
            "javascriptreact",
            "vue"
        ],
        "editor.formatOnSave": false,
        "vetur.format.defaultFormatter.js": "vscode-typescript",
        "vetur.format.defaultFormatterOptions": {
            "prettier": {
                "semi": false,
                "singleQuote": true
            },
            "prettyhtml": {
                "printWidth": 140,
                "wrapAttributes": false
            }
        },
        // "[javascript]": {
        //     "editor.formatOnSave": true
        // },
        "[json]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[jsonc]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[html]": {
            "editor.defaultFormatter": "esbenp.prettier-vscode"
        },
        "[vue]": {
            "editor.defaultFormatter": "octref.vetur",
            "editor.formatOnSave": true
        },
        //  #去掉代码结尾的分号 
        "prettier.semi": false,
        //  #使用带引号替代双引号 
        "prettier.singleQuote": true,
        "eslint.codeActionsOnSave.mode": "problems",
        "editor.codeActionsOnSave": {
            // For ESLint
            "source.fixAll.eslint": true
        },
        "editor.formatOnPaste": false,
        "vsicons.dontShowNewVersionMessage": true,
        "diffEditor.ignoreTrimWhitespace": false,
        // 顶部注释模板,可定义作者、时间等
        "fileheader.Author": "zhaohui",
        "fileheader.LastModifiedBy": "zhaohui",
        "workbench.iconTheme": "material-icon-theme",
        "material-icon-theme.folders.theme": "specific",
        "material-icon-theme.activeIconPack": "vue",
        "material-icon-theme.hidesExplorerArrows": false,
        "material-icon-theme.folders.color": "#90a4ae",
        "material-icon-theme.saturation": null
    }
    

      个人喜好插件

     

     还有一个电脑插件(utools)=》一键召唤中英文翻译

    谷歌插件

     浏览器黑科技

    document.designMode = 'on'

  • 相关阅读:
    【洛谷4657】[CEOI2017] Chase(一个玄学的树形DP)
    Tarjan在图论中的应用(二)——用Tarjan来求割点与割边
    Tarjan在图论中的应用(一)——用Tarjan来实现强连通分量缩点
    jquery放大镜
    自定义上传按钮样式
    一些设计理论资料
    jquery滚动条
    全栈工程师到底有什么用(转)
    巧用CSS文件愚人节恶搞(转)
    仿双色球-随机产生7个数字
  • 原文地址:https://www.cnblogs.com/followme789/p/13335622.html
Copyright © 2011-2022 走看看