Skip to content

Commit 3afdaa7

Browse files
authored
Remove eslintIgnore from package.json (#3533)
## Description Seems that I forgot to remove `eslintIgnore` from `package.json` in _**GestureHandler**_ package when migrating config to `eslintrc.json` ## Test plan Run `yarn lint-js`
1 parent 7e84e0b commit 3afdaa7

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"ignorePatterns": [
2121
"packages/react-native-gesture-handler/lib/**/*",
2222
"**/*.config.js",
23-
"scripts/*.js"
23+
"scripts/*.js",
24+
"**/node_modules/**/*"
2425
],
2526
"rules": {
2627
// removed in new jest-eslint-plugin, referenced in satya config

packages/react-native-gesture-handler/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,6 @@
123123
]
124124
]
125125
},
126-
"eslintIgnore": [
127-
"node_modules/",
128-
"lib/",
129-
"src/specs/*NativeComponent.js"
130-
],
131126
"codegenConfig": {
132127
"name": "rngesturehandler_codegen",
133128
"type": "all",

0 commit comments

Comments
 (0)