zoukankan      html  css  js  c++  java
  • eslint 配置

    {
      "editor.tabSize": 2,
      "standard.validate": [
        "javascript",
        "javascriptreact",
        {
          "language": "vue",
          "autoFix": true
        }
      ],
      "standard.options": {
        "plugin": [
          "html"
        ]
      },
      "editor.formatOnSave": true,
      // 添加 vue 支持
      "eslint.validate": [
        "javascript",
        "javascriptreact",
        {
          "language": "vue",
          "autoFix": true
        }
      ],
      // "backgroung.enable": true,
      // "background.useDefault": false,
      // "background.customImages": [
      //   "file:///C:/Users/Administrator/Pictures/timg (4).jpg"
      // ],
      "background.style": {
        "content": "''",
        "pointer-events": "none",
        "position": "absolute",
        "top": "0",
        "right": "0",
        "width": "100%",
        "height": "100%",
        "z-index": "99999",
        "background.repeat": "no-repeat",
        "background-size": "contain",
        "opacity": 0.1
      },
      // 使用插件格式化 html
      "vetur.format.defaultFormatter.html": "js-beautify-html",
      "vetur.format.defaultFormatter.js": "none",
      "prettier.semi": false,
      "search.followSymlinks": false,
      "explorer.confirmDragAndDrop": false,
      "workbench.editor.enablePreview": false,
      "window.zoomLevel": 0,
      "files.autoSave": "afterDelay",
      "javascript.updateImportsOnFileMove.enabled": "always",
      "eslint.autoFixOnSave": true
    }
    

      

  • 相关阅读:
    VB6之GDI+加载PNG图片
    VB6之阴影图层
    VB6之截图
    VB6之调整任务栏按钮的位置
    恐怖的ifdown eth0;0
    VB6之WM_COPYDATA
    删除整个链表
    digest 词根 gest
    new和delete
    static, const
  • 原文地址:https://www.cnblogs.com/dhsz/p/11770207.html
Copyright © 2011-2022 走看看