project.code-workspace 1.1 KB

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