settings.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "[vue]": {
  3. "editor.defaultFormatter": "esbenp.prettier-vscode"
  4. },
  5. "editor.quickSuggestions": {
  6. "strings": true
  7. },
  8. "workbench.colorTheme": "One Monokai",
  9. "editor.tabSize": 2,
  10. "editor.detectIndentation": false,
  11. "emmet.triggerExpansionOnTab": true,
  12. "editor.formatOnSave": true,
  13. "javascript.format.enable": true,
  14. "git.enableSmartCommit": true,
  15. "git.autofetch": true,
  16. "git.confirmSync": false,
  17. "[json]": {
  18. "editor.defaultFormatter": "esbenp.prettier-vscode"
  19. },
  20. "liveServer.settings.donotShowInfoMsg": true,
  21. "explorer.confirmDelete": false,
  22. "javascript.updateImportsOnFileMove.enabled": "always",
  23. "typescript.updateImportsOnFileMove.enabled": "always",
  24. "files.exclude": {
  25. "**/.idea": true
  26. },
  27. "editor.codeActionsOnSave": {
  28. "source.fixAll.stylelint": "explicit",
  29. "source.fixAll.eslint": "explicit"
  30. },
  31. "[javascript]": {
  32. "editor.defaultFormatter": "esbenp.prettier-vscode"
  33. },
  34. "[jsonc]": {
  35. "editor.defaultFormatter": "esbenp.prettier-vscode"
  36. },
  37. "[html]": {
  38. "editor.defaultFormatter": "esbenp.prettier-vscode"
  39. },
  40. "editor.suggest.snippetsPreventQuickSuggestions": false,
  41. "prettier.htmlWhitespaceSensitivity": "ignore",
  42. "prettier.vueIndentScriptAndStyle": true,
  43. "docthis.authorName": "https://vue-admin-beautiful.com",
  44. "docthis.includeAuthorTag": true,
  45. "docthis.includeDescriptionTag": true,
  46. "docthis.enableHungarianNotationEvaluation": true,
  47. "docthis.inferTypesFromNames": true,
  48. "vetur.format.defaultFormatter.html": "prettier",
  49. "files.autoSave": "onFocusChange",
  50. "path-intellisense.mappings": {
  51. "@": "${workspaceRoot}/src"
  52. },
  53. "files.eol": "\n"
  54. }