分享一下我的vscode配置

75 阅读1分钟

今天是程序员节日,还剩七小时就要结束了,


{
  "editor.fontSize": 15,
  "breadcrumbs.enabled": false,
  "editor.tabSize": 2,
  "editor.defaultFormatter": "esbenp.prettier-vscode", // 默认格式化程序
  // Set the default
  "editor.formatOnSave": true,
  "prettier.endOfLine": "auto",
  "prettier.requireConfig": false,
  // "editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll"],
  "editor.codeActionsOnSave": ["source.fixAll"],
  "chatgpt.lang": "cn",
  "diffEditor.ignoreTrimWhitespace": true,
  "files.exclude": {
    "node_modules/": true
  },
  "javascript.updateImportsOnFileMove.enabled": "always",
  "notebook.codeActionsOnSave": {},
  "explorer.confirmDelete": false,
  "security.workspace.trust.untrustedFiles": "open",
  "editor.stickyScroll.enabled": false
}