• 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'

  • 相关阅读:
    angularjs
    HTML5
    Java Concurrency —— 《Java并发编程实战》读书笔记
    java IO
    Struts2 文件上传下载
    SQL join
    Annotation
    if表达式
    Ext js 下拉框下拉的同时输入模糊查询
    JSP如何把一个页面的值传到另一个页面
  • 原文地址:https://www.cnblogs.com/followme789/p/13335622.html
Copyright © 2020-2023  润新知