.flowconfig 1.7 KB
Newer Older
Lidan Hifi's avatar
Lidan Hifi committed
1 2 3
[ignore]

# We fork some components by platform.
4
.*/*[.]android.js
Lidan Hifi's avatar
Lidan Hifi committed
5

6 7
# Ignore templates with `@flow` in header
.*/local-cli/generator.*
Lidan Hifi's avatar
Lidan Hifi committed
8

9 10
# Ignore malformed json
.*/node_modules/y18n/test/.*\.json
Lidan Hifi's avatar
Lidan Hifi committed
11

12 13
# Ignore the website subdir
<PROJECT_ROOT>/website/.*
Lidan Hifi's avatar
Lidan Hifi committed
14

15 16
# Ignore BUCK generated dirs
<PROJECT_ROOT>/\.buckd/
Lidan Hifi's avatar
Lidan Hifi committed
17

18 19
# Ignore unexpected extra @providesModule
.*/node_modules/commoner/test/source/widget/share.js
Lidan Hifi's avatar
Lidan Hifi committed
20

21 22 23 24 25
# Ignore duplicate module providers
# 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
.*/node_modules/jest-runtime/build/__tests__/.*
Lidan Hifi's avatar
Lidan Hifi committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39

[include]

[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow
flow/

[options]
module.system=haste

esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable

40 41
experimental.strict_type_args=true

Lidan Hifi's avatar
Lidan Hifi committed
42 43 44
munge_underscores=true

module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
45
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'
Lidan Hifi's avatar
Lidan Hifi committed
46 47 48 49 50

suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe

51 52
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-2]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-2]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
Lidan Hifi's avatar
Lidan Hifi committed
53 54
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy

55 56
unsafe.enable_getters_and_setters=true

Lidan Hifi's avatar
Lidan Hifi committed
57
[version]
58
^0.32.0