-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flowconfig
29 lines (24 loc) · 1.12 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
[ignore]
.*/node_modules/config-chain/test/broken.json
.*/node_modules/cypress/.*
.*/node_modules/enzyme-matchers/.*
.*/node_modules/jest-enzyme/.*
.*/node_modules/npmconf/test/.*
.*/node_modules/stylelint/.*
[include]
[libs]
[options]
module.name_mapper='^actions\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/actions/\1'
module.name_mapper='^components\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/components/\1'
module.name_mapper='^config$' -> '<PROJECT_ROOT>/app/scripts/config'
module.name_mapper='^constants\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/constants/\1'
module.name_mapper='^containers\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/containers/\1'
module.name_mapper='^modules\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/modules/\1'
module.name_mapper='^reducers\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/reducers/\1'
module.name_mapper='^routes\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/routes/\1'
module.name_mapper='^sagas\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/sagas/\1'
module.name_mapper='^utils\/\(.*\)$' -> '<PROJECT_ROOT>/app/scripts/utils/\1'
munge_underscores=true
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe