-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.flowconfig
124 lines (90 loc) · 3.45 KB
/
.flowconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[ignore]
# We fork some components by platform.
.*/*[.]android.js
# Ignore templates with `@flow` in header
.*/local-cli/generator.*
# Ignore malformed json
.*/node_modules/y18n/test/.*\.json
# Ignore the website subdir
<PROJECT_ROOT>/website/.*
# Ignore BUCK generated dirs
<PROJECT_ROOT>/\.buckd/
# 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
# Ugh
.*/node_modules/babel.*
.*/node_modules/babylon.*
.*/node_modules/invariant.*
#.*/node_modules/ReactNativeART.*
# Ignore react and fbjs where there are overlaps, but don't ignore
# anything that react-native relies on
#.*/node_modules/.*
.*/node_modules/fbjs/lib/Map.js
.*/node_modules/fbjs/lib/Promise.js
.*/node_modules/fbjs/lib/fetch.js
.*/node_modules/fbjs/lib/ExecutionEnvironment.js
.*/node_modules/fbjs/lib/isEmpty.js
.*/node_modules/fbjs/lib/crc32.js
.*/node_modules/fbjs/lib/ErrorUtils.js
.*/node_modules/fbjs/lib/fetchWithRetries.js
.*/node_modules/.*/node_modules/fbjs/.*
# Flow has a built-in definition for the 'react' module which we prefer to use
# over the currently-untyped source
.*/node_modules/react/react.js
.*/node_modules/react/lib/.*
.*/node_modules/react-native/lib/.*
.*/node_modules/react-native/packager/.*
.*/node_modules/react-native/Libraries/.*
.*/node_modules/react-native/local-cli/.*
.*/node_modules/react-native/jest/.*
.*/node_modules/react-native/ReactAndroid/.*
.*/node_modules/react-native-experimental-navigation/.*
.*/node_modules/react-native-windows/.*
# Ignore commoner tests
# See https://github.com/facebook/flow/issues/442
.*/node_modules/commoner/test/.*
.*/react-tools/node_modules/commoner/lib/reader.js
# Ignore react-native-uber-rides
.*/node_modules/react-native-uber-rides/.*
# Ignore jest
.*/node_modules/jest-cli/.*
.*/node_modules/jest-runtime/build/__tests__/.*
# exclude all node modules
#.*/node_modules/.*
[include]
#.*/node_modules/.*
# force adding modules
#.*/node_modules/react-native-linear-gradient/.*
#.*/node_modules/react-native-calendar-events/*
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow
node_modules/*
flow/
[options]
emoji=true
module.system=haste
module.file_ext=.ios.js
module.file_ext=.android.js
module.file_ext=.js
module.file_ext=.json
module.ignore_non_literal_requires=true
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
experimental.strict_type_args=true
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'
module.name_mapper.extension='png' -> '<PROJECT_ROOT>/ImageSourceStub.js.flow'
module.name_mapper.extension='mp4' -> '<PROJECT_ROOT>/ImageSourceStub.js.flow'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-7]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-7]\\|[1-3][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.52.0