forked from okTurtles/group-income
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flowconfig
31 lines (28 loc) · 854 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
[ignore]
# Config related docs:
# - https://flowtype.org/docs/advanced-configuration.html
# - https://flowtype.org/docs/declarations.html
# Generally useful FlowType docs:
# - https://flowtype.org/docs/quick-reference.html
# - https://flowtype.org/docs/objects.html
# - https://flowtype.org/docs/functions.html
.*/node_modules/.*
.*/dist/.*
.*/ignored/.*
.*/historical/.*
.*/frontend/assets/.*
.*/frontend/controller/backend/interface.js
.*/frontend/controller/utils/primus.js
.*/frontend/utils/crypto.js
.*/frontend/utils/vuexQueue.js
.*/frontend/utils/flowTyper.js
# .*/test/backend.js
.*/test/frontend.js
.*.test.js
[libs]
shared/declarations.js
[options]
module.ignore_non_literal_requires=true
all=true
# https://github.com/entwicklerstube/babel-plugin-root-import#dont-let-flow-be-confused
module.name_mapper='^~/\(.*\)$' -> '<PROJECT_ROOT>/\1'