settings.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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. "javascript.validate.enable": false,
  8. "window.zoomLevel": -1,
  9. "[javascript]": {
  10. "editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
  11. },
  12. "[vue]": {
  13. "editor.defaultFormatter": "octref.vetur"
  14. },
  15. "emmet.showAbbreviationSuggestions": true,
  16. "emmet.showExpandedAbbreviation": "always",
  17. "emmet.syntaxProfiles": {
  18. "vue-html": "html",
  19. "vue":"html"
  20. },
  21. "vetur.format.defaultFormatter.html": "js-beautify-html",
  22. "vetur.format.defaultFormatter.js": "prettier-eslint",
  23. "vue-format.format_need": [
  24. "html",
  25. "js",
  26. "css"
  27. ],
  28. "editor.codeActionsOnSave": {
  29. "source.fixAll.eslint": true
  30. },
  31. "editor.suggestSelection": "first",
  32. "emmet.excludeLanguages": [
  33. "markdown"
  34. ]
  35. }