vscode 常用配置 你想不到的好用 自动定位配置的eslint文件

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_39517820/article/details/81253961
{
  "workbench.iconTheme": "vscode-icons",
  "editor.tabSize": 2,
  "editor.detectIndentation": false,
  "editor.formatOnSave": true,
  "vetur.format.defaultFormatter.js": "vscode-typescript",
  "vetur.validation.template": false,
  "eslint.autoFixOnSave": true,
  // "terminal.integrated.fontFamily": "FuraMono Nerd Font",
  // "terminal.integrated.fontSize": 12,
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  "vetur.format.defaultFormatterOptions": {
    "wrap_attributes": "force-aligned"
  },
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "html",
    "vue",
    {
      "language": "html",
      "autoFix": true
    },
    {
      "language": "vue",
      "autoFix": true
    }
  ],
  "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
  "files.autoSave": "afterDelay",
  "background.customImages": [
    "file:///D:/用户目录/Pictures/bg1.jpg"
  ],
  "background.useDefault": false,
  "background.style": {
    "content": "''",
    "pointer-events": "none",
    "position": "absolute",
    "z-index": "99999",
    "width": "100%",
    "height": "100%",
    "background-position": "center",
    "background-repeat": "no-repeat",
    "opacity": 0.1
  },
  "gitlens.advanced.messages": {
    "suppressCommitHasNoPreviousCommitWarning": false,
    "suppressCommitNotFoundWarning": false,
    "suppressFileNotUnderSourceControlWarning": false,
    "suppressGitVersionWarning": false,
    "suppressLineUncommittedWarning": false,
    "suppressNoRepositoryWarning": false,
    "suppressResultsExplorerNotice": false,
    "suppressShowKeyBindingsNotice": true
  },
  "workbench.startupEditor": "newUntitledFile",
  "git.confirmSync": false,
  "files.autoSaveDelay": 3000,
  "gitlens.historyExplorer.enabled": true,
  "terminal.integrated.rendererType": "dom",
  "search.followSymlinks": false,
  // "easysass.compileAfterSave": true,
  // "easysass.excludeRegex": "",
  // "easysass.formats": [
  //   {
  //     "format": "compact",
  //     "extension": ".css"
  //   }
  // ],
  // "easysass.targetDir": "",
}

猜你喜欢

转载自blog.csdn.net/qq_39517820/article/details/81253961