xref: /MusicFree/.eslintrc.js (revision 33d529550b6205d83b1bee02bb839fb71b46cd36)
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