From c038fd43a3e681e7516bafae1ef2e60a555ed224 Mon Sep 17 00:00:00 2001 From: Jonathan Sharpe Date: Wed, 15 Jul 2020 20:44:40 +0100 Subject: [PATCH] Explicitly exclude node_modules/ in ESLint configuration --- packages/eslint-config-react-app/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/eslint-config-react-app/index.js b/packages/eslint-config-react-app/index.js index 5e5825e99ef..b59fd176346 100644 --- a/packages/eslint-config-react-app/index.js +++ b/packages/eslint-config-react-app/index.js @@ -52,6 +52,10 @@ module.exports = { }, }, + ignorePatterns: [ + "node_modules/" + ], + overrides: [ { files: ['**/*.ts?(x)'],