-
Notifications
You must be signed in to change notification settings - Fork 5
/
.flowconfig
62 lines (57 loc) · 3.04 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
54
55
56
57
58
59
60
61
62
[ignore]
.*/node_modules/immutable/.*
.*/node_modules/documentation/.*
.*/node_modules/oboe/.*
.*/node_modules/ipfs/test/.*
[include]
<PROJECT_ROOT>/src
<PROJECT_ROOT>/node_modules/react
<PROJECT_ROOT>/node_modules/redux
<PROJECT_ROOT>/node_modules/fbjs/lib
[libs]
flow/flow-typed
flow
[options]
module.system=haste
module.use_strict=true
module.ignore_non_literal_requires=true
module.file_ext=.js
module.file_ext=.json
module.file_ext=.scss
module.name_mapper='^config\/\(.*\)$' -> '<PROJECT_ROOT>/config/\1'
module.name_mapper='^config$' -> '<PROJECT_ROOT>/config'
module.name_mapper='^scripts\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/\1'
module.name_mapper='^scripts$' -> '<PROJECT_ROOT>/src/scripts'
module.name_mapper='^styles\/\(.*\)$' -> '<PROJECT_ROOT>/src/styles/\1'
module.name_mapper='^styles$' -> '<PROJECT_ROOT>/src/styles'
module.name_mapper='^actions\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/actions/\1'
module.name_mapper='^actions$' -> '<PROJECT_ROOT>/src/scripts/actions'
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/components/\1'
module.name_mapper='^components$' -> '<PROJECT_ROOT>/src/scripts/components'
module.name_mapper='^constants\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/constants/\1'
module.name_mapper='^constants$' -> '<PROJECT_ROOT>/src/scripts/constants'
module.name_mapper='^selectors\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/selectors/\1'
module.name_mapper='^selectors$' -> '<PROJECT_ROOT>/src/scripts/selectors'
module.name_mapper='^reducers\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/reducers/\1'
module.name_mapper='^reducers$' -> '<PROJECT_ROOT>/src/scripts/reducers'
module.name_mapper='^records\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/records/\1'
module.name_mapper='^records$' -> '<PROJECT_ROOT>/src/scripts/records'
module.name_mapper='^operators\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/operators/\1'
module.name_mapper='^operators$' -> '<PROJECT_ROOT>/src/scripts/operators'
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/containers/\1'
module.name_mapper='^containers$' -> '<PROJECT_ROOT>/src/scripts/containers'
module.name_mapper='^adapters\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/adapters/\1'
module.name_mapper='^adapters$' -> '<PROJECT_ROOT>/src/scripts/adapters'
module.name_mapper='^assets\/\(.*\)$' -> '<PROJECT_ROOT>/src/assets/\1'
module.name_mapper='^assets$' -> '<PROJECT_ROOT>/src/assets'
module.name_mapper='^types\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/types/\1'
module.name_mapper='^types$' -> '<PROJECT_ROOT>/src/scripts/types'
module.name_mapper='^utils\/\(.*\)$' -> '<PROJECT_ROOT>/src/scripts/utils/\1'
module.name_mapper='^utils$' -> '<PROJECT_ROOT>/src/scripts/utils'
module.name_mapper='^unit-tests\/\(.*\)$' -> '<PROJECT_ROOT>/test/unit-tests/\1'
module.name_mapper='^unit-tests$' -> '<PROJECT_ROOT>/test/unit-tests'
module.name_mapper='^translations\/\(.*\)$' -> '<PROJECT_ROOT>/src/translations/\1'
module.name_mapper='^translations$' -> '<PROJECT_ROOT>/src/translations'
esproposal.class_static_fields=enable
suppress_type=$FlowIssue
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe