settings.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "editor.formatOnType": true,
  3. "editor.formatOnSave": true,
  4. "[vue]": {
  5. "editor.defaultFormatter": "Vue.volar"
  6. },
  7. "editor.tabSize": 2,
  8. "editor.formatOnPaste": true,
  9. "editor.guides.bracketPairs": "active",
  10. "files.autoSave": "afterDelay",
  11. "git.confirmSync": false,
  12. "workbench.startupEditor": "newUntitledFile",
  13. "editor.suggestSelection": "first",
  14. "editor.acceptSuggestionOnCommitCharacter": false,
  15. "css.lint.propertyIgnoredDueToDisplay": "ignore",
  16. "editor.quickSuggestions": {
  17. "other": true,
  18. "comments": true,
  19. "strings": true
  20. },
  21. "files.associations": {
  22. "editor.snippetSuggestions": "top"
  23. },
  24. "[css]": {
  25. "editor.defaultFormatter": "esbenp.prettier-vscode"
  26. },
  27. "editor.codeActionsOnSave": {
  28. "source.fixAll.eslint": "explicit"
  29. },
  30. "i18n-ally.localesPaths": "locales",
  31. "i18n-ally.keystyle": "nested",
  32. "i18n-ally.sortKeys": true,
  33. "i18n-ally.namespace": true,
  34. "i18n-ally.enabledParsers": [
  35. "yaml",
  36. "js"
  37. ],
  38. "i18n-ally.sourceLanguage": "en",
  39. "i18n-ally.displayLanguage": "zh-CN",
  40. "i18n-ally.enabledFrameworks": [
  41. "vue"
  42. ],
  43. "iconify.excludes": [
  44. "el"
  45. ]
  46. }