gpt4 book ai didi

javascript - Visual Studio Code : Failed to apply ESLint fixes to the document

转载 作者:行者123 更新时间:2023-12-04 16:08:51 44 4
gpt4 key购买 nike

我正在使用 Visual Studio Code 1.6.1,安装并启用了最新版本的 ESLint 扩展。
我有

"eslint.options": {
"rules": {
...
}
}


在我的 vs-code 用户设置中。
我能够使用自动命令“eslint.executeAutofix”自动修复我的 js 文件,但是从我最后一次更新 vs-code 开始,我收到以下错误:

Failed to apply ESLint fixes to the document. Please consider opening an issue with steps to reproduce.


有人可以帮助我或指出我可以解决此问题的方向吗?

最佳答案

对于遇到相同问题的任何人。要排除故障,请尝试运行 npx eslint path/to/your/file查看实际的 eslint 输出。

就我而言,它缺少 Prettier 插件:

Failed to load plugin 'prettier' declared in '.eslintrc.js » @react-native-community/eslint-config': Cannot find module 'eslint-plugin-prettier'

关于javascript - Visual Studio Code : Failed to apply ESLint fixes to the document,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40080895/

44 4 0
文章推荐: objective-c - 使用多级指针类型处理 _Nonnull 或 Nullable
文章推荐: scala - 如何在 Scala 中为 Iterable 编写 while() 循环?