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