forked from facebookarchive/nuclide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
35 lines (30 loc) · 1007 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
[include]
[ignore]
; ignore module source to prefer declaration
<PROJECT_ROOT>/node_modules/classnames/.*
<PROJECT_ROOT>/node_modules/fuzzaldrin/.*
<PROJECT_ROOT>/node_modules/lru-cache/.*
<PROJECT_ROOT>/node_modules/react/.*
<PROJECT_ROOT>/node_modules/rxjs/.*
<PROJECT_ROOT>/node_modules/semver/.*
; annotated with `@flow` but have errors
<PROJECT_ROOT>/node_modules/fbjs/lib/.*
<PROJECT_ROOT>/pkg/nuclide-node-transpiler/spec/fixtures/.*
; large dirs that are not imported
<PROJECT_ROOT>/docs/.*
<PROJECT_ROOT>/pkg/nuclide-debugger/VendorLib/devtools/.*
[libs]
pkg/nuclide-external-interfaces/1.0/
[options]
esproposal.decorators=ignore
experimental.const_params=true
experimental.strict_type_args=true
module.use_strict=true
unsafe.enable_getters_and_setters=true
suppress_comment=.*\\$FlowFixMe.*
suppress_comment=.*\\$FlowIssue.*
suppress_comment=.*\\$FlowIgnore.*
; uncommenting the next line will silence flow errors about missing 'fb' modules
; suppress_comment=.*\\$FlowFB.*
[version]
0.35.0