Skip to content

Instantly share code, notes, and snippets.

@Ashoat
Created October 18, 2017 01:55
Show Gist options
  • Save Ashoat/e755141aaf0fc471bb8d782e88498f8a to your computer and use it in GitHub Desktop.
Save Ashoat/e755141aaf0fc471bb8d782e88498f8a to your computer and use it in GitHub Desktop.
diff --git a/.flowconfig b/.flowconfig
index 61567d6..a868d81 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -9,7 +9,9 @@
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
-.*/Libraries/react-native/ReactNative.js
+
+; Ignore polyfills
+.*/Libraries/polyfills/.*
; Ignore any possible duplicates from within our Example folder
.*/Example/node_modules/.*
@@ -18,7 +20,7 @@
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
-node_modules/react-native/flow
+node_modules/react-native/flow/
[options]
emoji=true
@@ -36,16 +38,16 @@ module.file_ext=.native.js
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
+suppress_type=$FlowFixMeProps
+suppress_type=$FlowFixMeState
suppress_type=$FixMe
-suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
-suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-9]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
+suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
+suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
unsafe.enable_getters_and_setters=true
[version]
-^0.51.1
-
-[lints]
+^0.53.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment