• 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": ""
    }
  • 相关阅读:
    OC语言前期准备
    C语言指针
    C语言字符串
    C语言数组
    python语法
    shell脚本命令 运行python文件&python命令行运行python代码
    HTTP Status完整枚举
    CRON表达式
    mybatis-generator生成的mapper中的
    iOS事件的响应和传递机制
  • 原文地址:https://www.cnblogs.com/xuanjiange/p/14403143.html
Copyright © 2020-2023  润新知