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