settings.json 836 B

12345678910111213141516171819202122232425262728293031
  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": ["el"]
  31. }