本地相关配置

vscode配置:

{
  // 指定 VS Code 界面的颜色主题
  "workbench.colorTheme": "Dracula Soft",
  // 将 Prettier 设置为 HTML、JavaScript 和 Vue 文件的默认代码格式化工具
  "[html]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[vue]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  // 配置编辑器的各个方面,如制表符大小、渲染空格、字体大小和字体连字
  "editor.tabSize": 2,
  "editor.renderWhitespace": "all",
  "editor.fontSize": 18,
  "editor.fontLigatures": false,
  // 配置 TypeScript 编译器的监视选项,控制它如何监视文件系统以进行增量编译
  "typescript.tsserver.watchOptions": {
    "excludeDirectories": ["node_modules", "dist"],
    "followSymlinks": false,
    "useFsEvents": false
  },
  "files.associations": {}, // 用于配置文件类型与语言模式(language mode)之间的关联
  "editor.suggestSelection": "first", // 配置代码建议(suggestions)的默认选择行为,"first" 表示默认选择建议列表的第一个建议
  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  "tabnine.experimentalAutoImports": true, // 启用 TabNine 的实验性自动导入功能
  "vscode-office.openOutline": false, // 打开文件时是否自动显示文件的大纲
  "security.workspace.trust.untrustedFiles": "open", // 指定不受信任的文件应在工作区中打开
  "javascript.updateImportsOnFileMove.enabled": "always", // 指定在移动文件时应始终自动更新导入
  "files.eol": "\n", // 文件换行符
  // 配置保存时的代码操作,并启用保存时的自动格式化
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "editor.formatOnSave": true
}

vscode扩展:
本地相关配置_第1张图片
本地相关配置_第2张图片
本地相关配置_第3张图片

你可能感兴趣的:(本地相关配置)