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