forked from facebookarchive/atom-ide-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
44 lines (37 loc) · 1.18 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
[include]
[ignore]
; ignore module source to prefer declaration
<PROJECT_ROOT>/node_modules/classnames/.*
<PROJECT_ROOT>/node_modules/lru-cache/.*
<PROJECT_ROOT>/node_modules/react/.*
<PROJECT_ROOT>/node_modules/rxjs/.*
<PROJECT_ROOT>/node_modules/semver/.*
<PROJECT_ROOT>/node_modules/jest-validate/.*
; annotated with `@flow` but have errors
<PROJECT_ROOT>/node_modules/fbjs/lib/.*
<PROJECT_ROOT>/modules/nuclide-node-transpiler/spec/fixtures/.*
; large dirs that are not imported
<PROJECT_ROOT>/docs/.*
<PROJECT_ROOT>/pkg/nuclide-debugger/VendorLib/devtools/.*
[libs]
flow-libs/
[options]
emoji=true
experimental.const_params=true
experimental.strict_type_args=true
module.use_strict=true
module.system.node.resolve_dirname=node_modules
; 'modules' is added to the NODE_PATH via nuclide-node-transpiler.
module.system.node.resolve_dirname=modules
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.*
[lints]
untyped-type-import=error
sketchy-null=error
sketchy-null-bool=off
[version]
0.60.1