9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: '@react-native',
|
|
rules: {
|
|
// Navigation render props (tabBarIcon, headerLeft etc.) are props, not render-time component definitions
|
|
'react/no-unstable-nested-components': ['warn', { allowAsProps: true }],
|
|
},
|
|
};
|