zoukankan      html  css  js  c++  java
  • 记录vscode eslint设置

    1.setting.json 文件配置

    {
        "workbench.colorTheme": "Solarized Light",
        "editor.quickSuggestions": {
            "strings": true
        },
        "git.path": "D:\\Git\\bin\\git.exe",
        "eslint.validate": [
            "javascript",
            "html",
            "vue"
        ],
        // "eslint.options": { "config-file": "" },
        "vetur.format.defaultFormatterOptions": {
            "prettier": {
              "semi": false,
              "eslintIntegration": false,
              "singleQuote": true
            }
        },
        "editor.detectIndentation": false,
        "editor.tabSize": 2,
          "files.autoSave": "onFocusChange",
          "window.zoomLevel": 0,
          "editor.codeActionsOnSave": {
            "source.fixAll.eslint": true
          },
          // "editor.formatOnSave": true,
          "explorer.confirmDelete": false,
          // "[javascript]": {
          //   "editor.defaultFormatter": "esbenp.prettier-vscode"
          // },
          "prettier.requireConfig": true,
          "git.enableSmartCommit": true,
          // "[vue]": {
          //   "editor.defaultFormatter": "esbenp.prettier-vscode"
          // },
          "git.confirmSync": false,
          "gitlens.advanced.messages": {
            "suppressGitDisabledWarning": true
          },
          "eslint.codeAction.showDocumentation": {
            "enable": true
          }
    }

     2.记录   名词:selenium(web自动化工具)、electron(构建桌面应用程序)

  • 相关阅读:
    POJ3122贪心或者二分(分蛋糕)
    POJ2118基础矩阵快速幂
    POJ2118基础矩阵快速幂
    POJ1328贪心放雷达
    POJ1328贪心放雷达
    hdu4642博弈(矩阵)
    hdu4642博弈(矩阵)
    POJ1042 贪心钓鱼
    POJ3160强连通+spfa最长路(不错)
    POJ3114强连通+spfa
  • 原文地址:https://www.cnblogs.com/qlnx/p/14485847.html
Copyright © 2011-2022 走看看