123456789101112131415161718192021222324252627282930 |
- module.exports = {
- 'extends': [
- '../.eslintrc.js',
- '@jitsi/eslint-config/jsdoc',
- '@jitsi/eslint-config/react',
- '.eslintrc-react-native.js'
- ],
- 'overrides': [
- {
- 'files': [ '*.ts', '*.tsx' ],
- extends: [ '@jitsi/eslint-config/typescript' ],
- parserOptions: {
- sourceType: 'module',
- project: [ './tsconfig.web.json', './tsconfig.native.json' ]
- },
- rules: {
- // TODO: Remove these and fix the warnings
- '@typescript-eslint/no-unsafe-function-type': 0,
- '@typescript-eslint/no-wrapper-object-types': 0,
-
- '@typescript-eslint/no-require-imports': 0
- }
- }
- ],
- 'settings': {
- 'react': {
- 'version': 'detect'
- }
- }
- };
|