Failed to load config "@vue/prettier/@typescript-eslint" to extend from.
时间: 2024-03-19 13:43:17 浏览: 319
vscode中eslint插件的配置(prettier配置无效)
这个错误可能是因为你的项目中缺少相关的依赖或配置文件。你可以尝试以下步骤来解决这个问题:
1. 确认你的项目中已经安装了 `@vue/eslint-config-typescript` 和 `@vue/eslint-config-prettier` 这两个依赖。你可以通过运行以下命令来安装它们:
```
npm install --save-dev @vue/eslint-config-typescript @vue/eslint-config-prettier
```
2. 确认你的项目根目录下有一个名为 `.eslintrc.js` 的配置文件,并且其中包含以下配置:
```
module.exports = {
extends: [
'@vue/typescript/recommended',
'@vue/prettier',
'@vue/prettier/@typescript-eslint'
],
// other options
}
```
如果你没有这个配置文件,可以通过以下命令创建:
```
npx eslint --init
```
然后按照提示进行配置即可。
如果以上两个步骤都已经尝试过了,但问题仍然存在,那么可能是其他配置文件或依赖项的问题。你可以尝试删除 `node_modules` 目录并重新安装依赖项,或者检查其他配置文件中是否有冲突的配置。
阅读全文