zoukankan      html  css  js  c++  java
  • vscode下eslint代码规范

    直接上规范吧:

    // 将设置放入此文件中以覆盖默认设置
    {
        "editor.fontSize": 17,
        "editor.tabSize": 2,
        "editor.formatOnSave": false,
        "files.associations": {
            "*.vue": "vue"
        },
        "eslint.validate": [
            "javascript",
            "javascriptreact",
            "html",
            "vue",
            {
                "language": "html",
                "autoFix": true
            }
        ],
        "emmet.syntaxProfiles": {
            "vue-html": "html",
            "vue": [
                "css",
                "html",
                "less"
            ]
        },
        "editor.fontFamily": "Source Code Pro, 'Courier New', monospace",
        "files.autoSave": "off",
        "workbench.iconTheme": "vscode-icons"
    }
    

      

  • 相关阅读:
    Spring mvc时间格式处理
    dubbo升级spring4与cxf
    dom4j使用总结
    java utils
    ES6
    ES6
    javascript常用方法
    ES6
    ES6
    ES6
  • 原文地址:https://www.cnblogs.com/vipzhou/p/6842404.html
Copyright © 2011-2022 走看看