diff options
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 701cc2916..9a9b2fe4a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,7 +3,13 @@ module.exports = { extends: '@react-native-community', parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint'], - ignorePatterns: ['**/__mocks__/*.ts', 'src/third-party', 'ios', 'android'], + ignorePatterns: [ + '**/__mocks__/*.ts', + 'src/third-party', + 'ios', + 'android', + 'coverage', + ], overrides: [ { files: ['*.js', '*.mjs', '*.ts', '*.tsx'], |