xref: /MusicFree/.eslintrc.js (revision 33d529550b6205d83b1bee02bb839fb71b46cd36)
1bf6e62f2S猫头猫module.exports = {
2bf6e62f2S猫头猫    root: true,
3*33d52955Smaotoumao    extends: ['@react-native', 'prettier'],
4bf6e62f2S猫头猫    overrides: [
5bf6e62f2S猫头猫        {
6bf6e62f2S猫头猫            files: ['*.ts', '*.tsx'],
7bf6e62f2S猫头猫            rules: {
85589cdf3S猫头猫                '@typescript-eslint/no-shadow': 'warn',
9bf6e62f2S猫头猫                'no-shadow': 'off',
10bf6e62f2S猫头猫                'no-undef': 'off',
114060c00aS猫头猫                'react-hooks/exhaustive-deps': 'warn',
12bf6e62f2S猫头猫            },
13bf6e62f2S猫头猫        },
14bf6e62f2S猫头猫    ],
15bf6e62f2S猫头猫};
16