2023-04-12 23:41:28 -06:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2024-06-30 09:20:28 -06:00
|
|
|
extends: '@react-native',
|
2023-04-12 23:41:28 -06:00
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
plugins: ['@typescript-eslint'],
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['*.ts', '*.tsx'],
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/no-shadow': ['error'],
|
|
|
|
'no-shadow': 'off',
|
|
|
|
'no-undef': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|