-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.flowconfig
43 lines (37 loc) · 1.15 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
[ignore]
.*/node_modules/.*
.*/build/.*
!.*/node_modules/redux-form/.*
!.*/node_modules/antd/.*
!.*/node_modules/@ant-design/.*
.*/node_modules/antd/lib/index.js
.*/node_modules/@ant-design/icons/lib/index.js
.*/node_modules/@ant-design/compatible/lib/index.js
.*/node_modules/redux-form/lib/FormName.js
.*/node_modules/redux-form/lib/FormSection.js
.*/node_modules/redux-form/lib/createReduxForm.js
.*/node_modules/redux-form/lib/defaultShouldAsyncValidate.js
.*/node_modules/redux-form/lib/defaultShouldError.js
.*/node_modules/redux-form/lib/defaultShouldValidate.js
.*/node_modules/redux-form/lib/defaultShouldWarn.js
.*/node_modules/redux-form/lib/immutable.js
.*/node_modules/redux-form/lib/index.js
.*/coverage/.*
[include]
[libs]
# Flow-typed installs flow types from third party packages
flow-typed
[lints]
[options]
# To avoid @flow annotation in every file
all=true
# Tells flow to look in node_modules for non-relative imports
module.system.node.resolve_dirname=node_modules
esproposal.decorators=ignore
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
[strict]
[version]
^0.148.0