我在我的一个react-native组件中有以下JSX
我收到以下ESLint错误:
'require' is not defined. (no-undef)
我尝试过添加行{ // eslint-disable-line no-undef },Image但这会产生解析错误.我怎样才能为这一行摆脱这个错误.
{ // eslint-disable-line no-undef }
Image
在您的.eslintrc文件上:
.eslintrc
{ "globals":{ "require": true } }