-
Notifications
You must be signed in to change notification settings - Fork 182
/
.flowconfig
43 lines (38 loc) · 879 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
[ignore]
.*
!<PROJECT_ROOT>/src
!<PROJECT_ROOT>/node_modules/graphql
[include]
[declarations]
<PROJECT_ROOT>/node_modules/graphql
[lints]
sketchy-null=error
sketchy-number=error
untyped-type-import=error
nonstrict-import=off
untyped-import=error
unclear-type=off
deprecated-type=error
deprecated-utility=error
unsafe-getters-setters=error
unnecessary-optional-chain=error
unnecessary-invariant=error
signature-verification-failure=error
implicit-inexact-object=error
ambiguous-object-type=off
uninitialized-instance-property=error
default-import-access=error
invalid-import-star-use=error
non-const-var-export=error
this-in-exported-function=error
mixed-import-and-require=error
export-renamed-default=error
[options]
all=true
module.use_strict=true
exact_by_default=true
babel_loose_array_spread=true
experimental.const_params=true
include_warnings=true
[version]
^0.159.0