settings.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "editor.formatOnType": true,
  3. "editor.formatOnSave": true,
  4. "[vue]": {
  5. "editor.defaultFormatter": "esbenp.prettier-vscode"
  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. "iconify.excludes": [
  31. "el"
  32. ],
  33. "vscodeCustomCodeColor.highlightValue": [
  34. "v-loading",
  35. "v-auth",
  36. "v-copy",
  37. "v-longpress",
  38. "v-optimize",
  39. "v-perms",
  40. "v-ripple"
  41. ],
  42. "vscodeCustomCodeColor.highlightValueColor": "#b392f0",
  43. }