forked from uber/baseweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
53 lines (46 loc) · 1.06 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
45
46
47
48
49
50
51
52
53
[ignore]
<PROJECT_ROOT>/dist/.*
<PROJECT_ROOT>/packages/.*
babel
build-ladle
.*/node_modules/.*[^(package)]\.json$
.*/node_modules/npmconf/.*
.*examples/fusion/.*
documentation-site/.next/.*
.*/node_modules/.*vite.*
.*\.png$
[include]
./src/
documentation-site/examples/.*
[libs]
[declarations]
<PROJECT_ROOT>/node_modules/.*
.*/flow-typed/.*
[options]
module.ignore_non_literal_requires=true
module.name_mapper.extension='md' -> '<PROJECT_ROOT>/flow/WebpackAsset.js.flow'
module.name_mapper='^baseui' ->'<PROJECT_ROOT>/src'
module.name_mapper='^examples' ->'<PROJECT_ROOT>/documentation-site/examples'
log.file=.flow.log
sharedmemory.hash_table_pow=21
merge_timeout=140
esproposal.optional_chaining=enable
esproposal.decorators=warn
include_warnings=false
module.use_strict=true
[lints]
unclear-type=error
unsafe-getters-setters=error
untyped-import=error
untyped-type-import=error
sketchy-number=error
deprecated-type=error
deprecated-utility=error
unnecessary-optional-chain=error
[strict]
unclear-type
unsafe-getters-setters
untyped-import
untyped-type-import
[version]
0.131.0