blob: f6a09f6a951094052d9c8d0f8d5b45b8311b6910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module.exports = {
root: true,
extends: '@react-native-community',
parser: '@typescript-eslint/parser',
plugins: ['react', 'react-native'],
rules: {
// TODO: Below lines are causing errors for `yarn lint`,
// commenting them out for now...
// 'react-native/no-unused-styles': 2,
// 'react-native/no-raw-text': 1,
// 'react-native/no-single-element-style-arrays': 2,
'react-hooks/exhaustive-deps': 'off',
'eslint-comments/no-unused-disable': 'off',
'eslint-comments/no-unlimited-disable': 'off',
},
};
|