zoukankan      html  css  js  c++  java
  • VScode全局设置

    {
      "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
      "editor.quickSuggestions": {
        "strings": true
      },
      "editor.codeActionsOnSave": {
        "source.fixAll.stylelint": true,
        "source.fixAll.eslint": true
      },
      "editor.fontSize": 18,
      "git.autofetch": true,
      "prettier.endOfLine": "crlf",
      "eslint.codeAction.showDocumentation": {
        "enable": true
      },
      "workbench.editorAssociations": [],
      "[vue]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "editor.tabSize": 2,
      "editor.detectIndentation": false,
      "emmet.triggerExpansionOnTab": true,
      "editor.formatOnSave": true,
      "javascript.format.enable": true,
      "git.enableSmartCommit": true,
      "git.confirmSync": false,
      "[json]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "liveServer.settings.donotShowInfoMsg": true,
      "explorer.confirmDelete": false,
      "javascript.updateImportsOnFileMove.enabled": "always",
      "typescript.updateImportsOnFileMove.enabled": "always",
      "files.exclude": {
        "**/.idea": true
      },
      "[javascript]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "[jsonc]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "[html]": {
        "editor.defaultFormatter": "esbenp.prettier-vscode"
      },
      "editor.suggest.snippetsPreventQuickSuggestions": false,
      "prettier.htmlWhitespaceSensitivity": "ignore",
      "prettier.vueIndentScriptAndStyle": true,
      "docthis.authorName": "职业搬砖",
      "docthis.includeAuthorTag": true,
      "docthis.includeDescriptionTag": true,
      "docthis.enableHungarianNotationEvaluation": true,
      "docthis.inferTypesFromNames": true,
      "vetur.format.defaultFormatter.html": "prettier",
      "files.autoSave": "onFocusChange",
      "path-intellisense.mappings": {
        "@": "${workspaceRoot}/src"
      },
      "files.eol": " ",
      "eslint.nodeEnv": "",
      "eslint.runtime": ""
    }
  • 相关阅读:
    c# 使用 Read 读取数据块
    C# TCP/IP通信,Socket通信例子
    c# virtual 关键字 虚方法
    统计图
    oauth2.0 判断接口是否允许跨域
    OI常用模板合集
    CSP2021游记
    8.16 树上问题模拟赛总结
    8.15 图论模拟赛垫底记
    8.14 字符串模拟赛总结
  • 原文地址:https://www.cnblogs.com/xuanjiange/p/14403143.html
Copyright © 2011-2022 走看看