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": ""
    }
  • 相关阅读:
    今天刚开通博客,很开心
    ZYNQ双核AMP开发详解(USE_AMP -DUSE_AMP=1 含义和作用详解)
    赛灵思机器学习套件(ML Suite) v1.4 DPU, DNNK
    petalinux add pre-build application to rootfs compile faliure solution
    如何用SDK生成device tree
    Zynq UltraScale+ MPSoC device tree 中 CCF中 clock output数字映射表
    Zynq ZC702平台 QSPI + eMMC实现
    Zynq ZC702平台 Linux + Baremetal AMP实现(一)【快速启动CPU1】
    第五章 任务执行
    第四章 闭锁
  • 原文地址:https://www.cnblogs.com/xuanjiange/p/14403143.html
Copyright © 2011-2022 走看看