Просмотр исходного кода

chore: recommend vscode eslint extension

xingyu4j 3 месяцев назад
Родитель
Сommit
1d98393f0c
1 измененных файлов с 5 добавлено и 3 удалено
  1. 5 3
      .vscode/extensions.json

+ 5 - 3
.vscode/extensions.json

@@ -2,6 +2,8 @@
   "recommendations": [
   "recommendations": [
     // Vue 3 的语言支持
     // Vue 3 的语言支持
     "Vue.volar",
     "Vue.volar",
+    // 将 eslint 集成到 VS Code 中。
+    "dbaeumer.vscode-eslint",
     // 将 oxlint 集成到 VS Code 中。
     // 将 oxlint 集成到 VS Code 中。
     "oxc.oxc-vscode",
     "oxc.oxc-vscode",
     // Visual Studio Code 的官方 Stylelint 扩展
     // Visual Studio Code 的官方 Stylelint 扩展
@@ -21,10 +23,10 @@
     // CSS 变量提示
     // CSS 变量提示
     "vunguyentuan.vscode-css-variables",
     "vunguyentuan.vscode-css-variables",
     // 在 package.json 中显示 PNPM catalog 的版本
     // 在 package.json 中显示 PNPM catalog 的版本
-    "antfu.pnpm-catalog-lens"
+    "antfu.pnpm-catalog-lens",
   ],
   ],
   "unwantedRecommendations": [
   "unwantedRecommendations": [
     // 和 volar 冲突
     // 和 volar 冲突
-    "octref.vetur"
-  ]
+    "octref.vetur",
+  ],
 }
 }