project.code-workspace 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. },
  6. {
  7. "path": "server"
  8. }
  9. ],
  10. "settings": {
  11. "javascript.updateImportsOnFileMove.enabled": "always",
  12. "typescript.validate.enable": false,
  13. "eslint.alwaysShowStatus": true,
  14. "eslint.workingDirectories": [
  15. "./"
  16. ],
  17. "javascript.validate.enable": true,
  18. "window.zoomLevel": -1,
  19. "[javascript]": {
  20. "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
  21. },
  22. "[vue]": {
  23. "editor.defaultFormatter": "octref.vetur"
  24. },
  25. "emmet.showAbbreviationSuggestions": true,
  26. "emmet.showExpandedAbbreviation": "always",
  27. "emmet.syntaxProfiles": {
  28. "vue-html": "html",
  29. "vue":"html"
  30. },
  31. "vetur.format.defaultFormatter.html": "js-beautify-html",
  32. "vetur.format.defaultFormatter.js": "prettier-eslint",
  33. "vue-format.format_need": [
  34. "html",
  35. "js",
  36. "css"
  37. ],
  38. "editor.codeActionsOnSave": {
  39. "source.fixAll.eslint": true
  40. },
  41. "editor.suggestSelection": "first",
  42. "emmet.excludeLanguages": [
  43. "markdown"
  44. ],
  45. "js/ts.implicitProjectConfig.checkJs": true
  46. }
  47. }