From 864bc7b939ca8a93583087d1ff596cd8049b4162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 14 Sep 2016 14:57:31 -0700 Subject: [PATCH] Update ignores in flowconfig (#7722) This ensures we ignore relative to our project root and won't be tripped up by issues where checkouts in other places result in Flow passing when it shouldn't (eg on Travis CI where the checkout path is `/home/travis/build/facebook/react`) --- .flowconfig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.flowconfig b/.flowconfig index 3448b44cb7..bad57bc52f 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,13 +1,13 @@ [ignore] -.*/examples/.* -.*/build/.* -.*/node_modules/y18n/.* -.*/__mocks__/.* -.*/__tests__/.* +/examples/.* +/build/.* +/.*/node_modules/y18n/.* +/.*/__mocks__/.* +/.*/__tests__/.* # Ignore Docs -.*/docs/.* +/.*/docs/.* [include]