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', }, };