在学习redux时,从官方github上克隆下来的代码运行时报错
Failed to load config “react-app” to extend from.
Referenced from: F:\Web\react\redux\.eslintrc.js
查资料发现时,大多数问题在于eslint缺失导致加载失败,于是我们应该在自己要启动的示例项目的根目录下添加.eslintrc.js,这样就可以正常运行了。
module.exports = {
root: true,
extends: ['react-app'],
};
解决方法,直接一点:F:\Web\redux\examples\shopping-cart\.eslintrc.js