settings.json 698 B

1234567891011121314151617181920212223242526
  1. {
  2. "editor.fontSize": 14,
  3. "editor.wordWrap": "off",
  4. "editor.detectIndentation": false,
  5. // 重新设定tabsize
  6. "editor.tabSize": 2,
  7. //失去焦点后自动保存
  8. "files.autoSave": "onFocusChange",
  9. //每120行就显示一条线
  10. "editor.rulers": [],
  11. // 在使用搜索功能时,将这些文件夹/文件排除在外
  12. "search.exclude": {
  13. "**/node_modules": true,
  14. "**/bower_components": true,
  15. "**/target": true,
  16. "**/logs": true
  17. },
  18. "editor.codeActionsOnSave": {
  19. "source.fixAll.eslint": "explicit"
  20. },
  21. "editor.defaultFormatter": "esbenp.prettier-vscode",
  22. // #值设置为true时,每次保存的时候自动格式化;
  23. "editor.formatOnSave": true
  24. }