settings.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. // You should install these plugins:
  3. // ESLint
  4. // Prettier - Code formatter
  5. // stylelint
  6. // vscode-icons
  7. // TypeScript Vue Plugin (Volar)
  8. // Vue Language Features (Volar)
  9. "terminal.integrated.rendererType": "dom",
  10. "editor.formatOnType": true,
  11. "editor.formatOnSave": true,
  12. "window.zoomLevel": 1,
  13. "javascript.updateImportsOnFileMove.enabled": "always",
  14. "[vue]": {
  15. "editor.defaultFormatter": "esbenp.prettier-vscode"
  16. },
  17. "[javascript]": {
  18. "editor.defaultFormatter": "vscode.typescript-language-features"
  19. },
  20. "editor.tabSize": 2,
  21. "editor.formatOnPaste": true,
  22. "files.autoSave": "afterDelay",
  23. "git.confirmSync": false,
  24. "workbench.startupEditor": "newUntitledFile",
  25. "editor.suggestSelection": "first",
  26. "editor.acceptSuggestionOnCommitCharacter": false,
  27. "css.lint.propertyIgnoredDueToDisplay": "ignore",
  28. // Prevent inline styles from being automatically formatted to all lowercase
  29. "editor.quickSuggestions": {
  30. "other": true,
  31. "comments": true,
  32. "strings": true
  33. },
  34. // Automatically fix some syntax errors of ts
  35. "tslint.autoFixOnSave": true,
  36. "files.associations": {
  37. // Specifies the location of snippets in the suggestion widget
  38. "editor.snippetSuggestions": "top"
  39. },
  40. "[css]": {
  41. "editor.defaultFormatter": "esbenp.prettier-vscode"
  42. },
  43. "cSpell.userWords": ["sourcemap", "vite"],
  44. "editor.codeActionsOnSave": {
  45. "source.fixAll.eslint": true
  46. },
  47. "volar.tsPlugin": true,
  48. "typescript.tsdk": "node_modules/typescript/lib",
  49. "i18n-ally.localesPaths": ["src/plugins/i18n"]
  50. }