-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.flowconfig
25 lines (19 loc) · 884 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
[ignore]
.*/node_modules/.*
[include]
[libs]
./flow-typed/npm/.*
[lints]
[options]
module.name_mapper='^assets\/\(.*\)$' -> '<PROJECT_ROOT>/src/assets/\1'
module.name_mapper='^data\/\(.*\)$' -> '<PROJECT_ROOT>/src/data/\1'
module.name_mapper='^global\/\(.*\)$' -> '<PROJECT_ROOT>/src/global/\1'
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/src/containers/\1'
module.name_mapper='^common\/\(.*\)$' -> '<PROJECT_ROOT>/src/common/\1'
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/src/components/\1'
module.name_mapper='^componentsStyled\/\(.*\)$' -> '<PROJECT_ROOT>/src/componentsStyled/\1'
module.name_mapper='^hocs\/\(.*\)$' -> '<PROJECT_ROOT>/src/hocs/\1'
module.name_mapper='^modals\/\(.*\)$' -> '<PROJECT_ROOT>/src/modals/\1'
module.name_mapper='^pages\/\(.*\)$' -> '<PROJECT_ROOT>/src/pages/\1'
suppress_comment=\\(.\\|\n\\)*\\$Ignore
[strict]