.eslintrc.js 415 B

1234567891011121314151617
  1. module.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. };