1module.exports = {
2 root: true,
3 extends: ['@react-native', 'prettier'],
4 overrides: [
5 {
6 files: ['*.ts', '*.tsx'],
7 rules: {
8 '@typescript-eslint/no-shadow': 'warn',
9 'no-shadow': 'off',
10 'no-undef': 'off',
11 'react-hooks/exhaustive-deps': 'warn',
12 },
13 },
14 ],
15};
16