extensions.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "recommendations": [
  3. // 在指定文件夹运行命令
  4. "adrianwilczynski.terminal-commands",
  5. // 监控文件修改,自动导入组件
  6. "emeraldwalk.runonsave",
  7. // 自动重命名close tag
  8. "formulahendry.auto-rename-tag",
  9. // 中文语言包
  10. "ms-ceintl.vscode-language-pack-zh-hans",
  11. // 用于快速创建多文件形式的组件
  12. "teamchilla.blueprint",
  13. // Syntax highlighting and more for .vue files
  14. // https://github.com/vuejs/vetur
  15. "octref.vetur",
  16. // Peek and go-to-definition for .vue files
  17. // https://github.com/fuzinato/vscode-vue-peek
  18. "dariofuzinato.vue-peek",
  19. // Lint-on-save with ESLint
  20. // https://github.com/microsoft/vscode-eslint
  21. "dbaeumer.vscode-eslint",
  22. // Lint-on-save with Stylelint
  23. "SanmaoZhao.vscode-stylelint-legacy",
  24. // Lint-on-save markdown in README files
  25. // https://github.com/DavidAnson/vscode-markdownlint
  26. "DavidAnson.vscode-markdownlint",
  27. // Format-on-save with Prettier
  28. // https://github.com/prettier/prettier-vscode
  29. "esbenp.prettier-vscode",
  30. // SCSS intellisense
  31. // https://github.com/mrmlnc/vscode-scss
  32. "mrmlnc.vscode-scss"
  33. ],
  34. "unwantedRecommendations": [
  35. "Vue.volar",
  36. "hookyqr.beautify",
  37. "dbaeumer.jshint",
  38. "stylelint.vscode-stylelint",
  39. "ms-vscode.vscode-typescript-tslint-plugin"
  40. ]
  41. }