settings.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "iconify.excludes": ["el"],
  31. "vscodeCustomCodeColor.highlightValue": [
  32. "v-loading",
  33. "v-auth",
  34. "v-copy",
  35. "v-longpress",
  36. "v-optimize",
  37. "v-perms",
  38. "v-ripple"
  39. ],
  40. "vscodeCustomCodeColor.highlightValueColor": "#b392f0",
  41. "editor.fontLigatures": false,
  42. "react-native.android.logCatArguments": [
  43. "*:S",
  44. "ReactNative:V",
  45. "ReactNativeJS:V"
  46. ]
  47. }