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
    }
    

      

  • 相关阅读:
    Ajax 一
    Ajax
    回调函数2
    回调函数
    mysql_fetch_row mysql_fetch_array
    几款主流PHP框架的优缺点评比
    关于PHP 7你必须知道的五件事
    10个实用的PHP正则表达式
    PHP实现四种基本排序算法
    10个最佳的PHP图像操作库
  • 原文地址:https://www.cnblogs.com/dhsz/p/11770207.html
Copyright © 2011-2022 走看看