-
Notifications
You must be signed in to change notification settings - Fork 1
/
.flowconfig
45 lines (34 loc) · 917 Bytes
/
.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
[ignore]
# Ugh
.*/node_modules/.*/src.*
.*/node_modules/binary-extensions/.*
.*/node_modules/fbjs/.*
.*/node_modules/url-regex/.*
.*/node_modules/spdx.*
.*/node_modules/builtin-modules.*
.*/node_modules/resolve.*
.*/test/.*json$
# Ignore tests
.*/node_modules/.*/test/.*
[include]
flow-typed
flow-typed/npm
[libs]
[options]
module.system=node
munge_underscores=true
module.name_mapper='.*\(.css\)' -> 'empty/object'
module.name_mapper='.*\(.scss\)' -> 'empty/object'
module.name_mapper='.*\(.png\)' -> 'empty/object'
suppress_type=$FlowIssue
suppress_type=$FlowIgnore
suppress_type=$FlowFixme
suppress_type=$Fixme
suppress_comment=\\(.\\|\n\\)*\\@flowFixme.*
suppress_comment=\\(.\\|\n\\)*\\@flowIgnore.*
suppress_comment=\\(.\\|\n\\)*\\@flowIssue.*
esproposal.class_instance_fields=enable
esproposal.class_static_fields=enable
esproposal.decorators=ignore
unsafe.enable_getters_and_setters=true
[version]