mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at typescript-check 21 lines 396 B view raw
1module.exports = { 2 root: true, 3 extends: '@react-native-community', 4 parser: '@typescript-eslint/parser', 5 plugins: ['@typescript-eslint'], 6 ignorePatterns: [ 7 '**/__mocks__/*.ts', 8 'src/third-party', 9 'ios', 10 'android', 11 'coverage', 12 ], 13 overrides: [ 14 { 15 files: ['*.js', '*.mjs', '*.ts', '*.tsx'], 16 rules: { 17 semi: [2, 'never'], 18 }, 19 }, 20 ], 21}