1bf6e62f2S猫头猫module.exports = { 2bf6e62f2S猫头猫 root: true, 36704747aS猫头猫 extends: ['@react-native-community', 'plugin:prettier/recommended'], 4bf6e62f2S猫头猫 parser: '@typescript-eslint/parser', 56704747aS猫头猫 plugins: ['@typescript-eslint', 'prettier'], 6bf6e62f2S猫头猫 overrides: [ 7bf6e62f2S猫头猫 { 8bf6e62f2S猫头猫 files: ['*.ts', '*.tsx'], 9bf6e62f2S猫头猫 rules: { 10*4060c00aS猫头猫 '@typescript-eslint/no-shadow': ['warn'], 11bf6e62f2S猫头猫 'no-shadow': 'off', 12bf6e62f2S猫头猫 'no-undef': 'off', 13*4060c00aS猫头猫 'prettier/prettier': 'error', 14*4060c00aS猫头猫 'react-hooks/exhaustive-deps': 'warn', 15bf6e62f2S猫头猫 }, 16bf6e62f2S猫头猫 }, 17bf6e62f2S猫头猫 ], 18bf6e62f2S猫头猫}; 19