extensions.json 867 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "recommendations": [
  3. // Vue 3 的语言支持
  4. "Vue.volar",
  5. // 将 ESLint JavaScript 集成到 VS Code 中。
  6. "dbaeumer.vscode-eslint",
  7. // Visual Studio Code 的官方 Stylelint 扩展
  8. "stylelint.vscode-stylelint",
  9. // 使用 Prettier 的代码格式化程序
  10. "esbenp.prettier-vscode",
  11. // 支持 dotenv 文件语法
  12. "mikestead.dotenv",
  13. // 源代码的拼写检查器
  14. "streetsidesoftware.code-spell-checker",
  15. // Tailwind CSS 的官方 VS Code 插件
  16. "bradlc.vscode-tailwindcss",
  17. // iconify 图标插件
  18. "antfu.iconify",
  19. // i18n 插件
  20. "Lokalise.i18n-ally",
  21. // CSS 变量提示
  22. "vunguyentuan.vscode-css-variables",
  23. // 在 package.json 中显示 PNPM catalog 的版本
  24. "antfu.pnpm-catalog-lens"
  25. ],
  26. "unwantedRecommendations": [
  27. // 和 volar 冲突
  28. "octref.vetur"
  29. ]
  30. }