Skip to content

Commit

Permalink
ignore some eslint rules in react-native folders (#32143)
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed May 24, 2021
1 parent 4edc47f commit 6a09db4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,11 @@ module.exports = {
},
overrides: [
{
files: [ '**/*.@(android|ios|native).js', ...developmentFiles ],
files: [
'**/*.@(android|ios|native).js',
'packages/react-native-*/**/*.js',
...developmentFiles,
],
rules: {
'import/no-extraneous-dependencies': 'off',
'import/no-unresolved': 'off',
Expand Down

0 comments on commit 6a09db4

Please sign in to comment.