当前位置: 代码迷 >> 综合 >> 解决 reactnative 报错 Error: Failed to load plugin '@react-native-community' declared
  详细解决方案

解决 reactnative 报错 Error: Failed to load plugin '@react-native-community' declared

热度:16   发布时间:2024-01-25 12:11:45.0

react native  报错 Error: Failed to load plugin '@react-native-community' declared in '.eslintrc.js ? @react-native-community/eslint-config': Cannot find module '@react-native-community/eslint-plugin'
Require stack:

解决:

yarn add --dev eslint @react-native-community/eslint-config
yarn add --dev eslint @react-native-community/eslint-plugin

添加到eslint配置(.eslintrc或package.json中的eslint config字段): 

{"plugins": ["@react-native-community"]
}
"extends": "@react-native-community"

 原文:https://www.npmjs.com/package/@react-native-community/eslint-config

https://www.pkgstats.com/pkg:@react-native-community/eslint-plugin

  相关解决方案