settings.json 1.1 KB

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