{
"extends": "@react-native",
"plugins": ["prettier"],
"rules": {
"react-native/no-inline-styles": "off",
"react/no-unstable-nested-components": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "warn",
"react-hooks/exhaustive-deps": "off",
"radix": "off",
"prettier/prettier": "warn",
"max-lines": "off"
},
"overrides": [
{
"files": ["*.js", "*.jsx", "*.ts", "*.tsx"],
"rules": {
"@react-native/no-deep-imports": 0
}
}
]
}