mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
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}