12345678910111213141516171819202122232425262728293031323334353637 |
- ; XXX The origin of the source code of this .flowconfig file is the jitsi-meet
- ; project. As the NPM package jitsi-meet builds the NPM package lib-jitsi-meet
- ; and jitsi-meet's react-native requires specific .flowconfig contents, it is
- ; mandatory to keep the .flowconfig files of jitsi-meet and lib-jitsi-meet in
- ; sync (e.g. the flow-bin version).
- ;
- [ignore]
- ; Ignore polyfills
- +.*/Libraries/polyfills/.*
-
- .*/\.git/.*
-
- [include]
-
- [libs]
-
- [options]
- emoji=true
-
- module.system=haste
-
- munge_underscores=true
-
- module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
-
- suppress_type=$FlowIssue
- suppress_type=$FlowFixMe
- suppress_type=$FlowFixMeProps
- suppress_type=$FlowFixMeState
-
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
- suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
- suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
- suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
-
- [version]
- ^0.67.0
|