native_convex_CRM/.eslintrc.js
2026-07-15 21:36:48 +05:30

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 }],
},
};