project.code-workspace 1.1 KB

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