From 8bb3033d73e87f6220e7332c1f4668069e850266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateo=20Guzm=C3=A1n?= Date: Thu, 7 Nov 2024 04:37:19 -0800 Subject: [PATCH] fix(flow): excluding `packages/rn-tester/Pods/` from flow checks (#47474) Summary: When running the commands to check the flow types locally, there is quite some noise from files under `packages/rn-tester/Pods` that should not be checked as they are not from the source code itself. Screenshot 2024-11-07 at 00 50 55 ## Changelog: [INTERNAL] [FIXED] - Excluding `packages/rn-tester/Pods/` from flow checks Pull Request resolved: https://github.com/facebook/react-native/pull/47474 Test Plan: ```bash yarn flow ``` Reviewed By: cortinico Differential Revision: D65594400 Pulled By: cipolleschi fbshipit-source-id: d5e8828f41fc87c9a95293c250f24673ebbc6cd4 --- .flowconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.flowconfig b/.flowconfig index 44a756caaed..8eb6023d7ad 100644 --- a/.flowconfig +++ b/.flowconfig @@ -26,6 +26,9 @@ ; helloworld /packages/helloworld/ios/Pods/ +; Ignore rn-tester Pods +/packages/rn-tester/Pods/ + [untyped] .*/node_modules/@react-native-community/cli/.*/.*