pansoft-plrl/.vscode/extensions.json

29 lines
779 B
JSON
Raw Permalink Normal View History

2024-07-23 15:37:23 +08:00
{
"recommendations": [
2024-09-10 22:30:01 +08:00
// Vue 3 的语言支持
2024-07-23 15:37:23 +08:00
"Vue.volar",
2024-09-10 22:30:01 +08:00
// 将 ESLint JavaScript 集成到 VS Code 中。
"dbaeumer.vscode-eslint",
// Visual Studio Code 的官方 Stylelint 扩展
"stylelint.vscode-stylelint",
// 使用 Prettier 的代码格式化程序
"esbenp.prettier-vscode",
// 支持 dotenv 文件语法
"mikestead.dotenv",
// 源代码的拼写检查器
2024-07-23 15:37:23 +08:00
"streetsidesoftware.code-spell-checker",
2024-09-10 22:30:01 +08:00
// Tailwind CSS 的官方 VS Code 插件
"bradlc.vscode-tailwindcss",
// iconify 图标插件
"antfu.iconify",
// i18n 插件
"Lokalise.i18n-ally",
// CSS 变量提示
"vunguyentuan.vscode-css-variables"
],
"unwantedRecommendations": [
// 和 volar 冲突
"octref.vetur"
2024-07-23 15:37:23 +08:00
]
}