找不到模块“eslint-plugin-prettier”
Posted
技术标签:
【中文标题】找不到模块“eslint-plugin-prettier”【英文标题】:Cannot find module 'eslint-plugin-prettier' 【发布时间】:2019-04-01 12:36:01 【问题描述】:我试图让 ESLint 和 Prettier 工作好几天,但无论我做什么,都没有任何改变。
我什至不知道我在全局安装了什么,但这是我项目的本地 package.json
"version": "0.0.1",
"private": true,
"scripts":
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
,
"dependencies":
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-react-native": "4.0.0",
"global": "^4.3.2",
"react": "16.5.0",
"react-native": "0.57.2",
"react-native-linear-gradient": "^2.4.0",
"react-native-navigation": "^1.1.488",
"react-native-snap-carousel": "^3.7.5",
"react-native-vector-icons": "^6.0.2",
"react-navigation": "^2.17.0"
,
"devDependencies":
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^3.0.0",
"jest": "23.6.0",
"prettier": "^1.14.3",
"react-test-renderer": "16.5.0"
,
"jest":
"preset": "react-native"
我的.eslintrc
包含
"extends": ["react-app", "plugin:prettier/recommended"]
ESLint 部分的输出显示
[Error - 1:15:10 PM] Cannot find module 'eslint-plugin-prettier' Referenced from: /Users/me/project/.eslintrc
我已经调整了 VSCode 设置,这很好,但是这个简单的行不通。
【问题讨论】:
【参考方案1】:我相信您缺少主要的 eslint 包。 您可以尝试将其添加到您的 package.json 中吗
"eslint": "^5.8.0",
【讨论】:
好的,解决了一些问题,但现在我看到了Cannot find module 'eslint-config-react-app'
好的,我从错误中安装了所有依赖项,现在它正在工作
此解决方案有效,但知道如何升级。 eslint 在 6.7.2
上,我仍然收到此错误。以上是关于找不到模块“eslint-plugin-prettier”的主要内容,如果未能解决你的问题,请参考以下文章