forked from kiwicom/orbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.flowconfig
32 lines (27 loc) · 1.05 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
[ignore]
<PROJECT_ROOT>/es/.*
<PROJECT_ROOT>/etc/.*
<PROJECT_ROOT>/lib/.*
.*/node_modules/immutable/.*
.*/node_modules/radium/.*
.*/node_modules/styled-components/.*
.*/node_modules/devtools-timeline-model/.*
.*/node_modules/chrome-devtools-frontend/.*
[include]
[libs]
types/
[lints]
unnecessary-optional-chain=error
[options]
emoji=true
esproposal.optional_chaining=enable
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue
suppress_comment=\\(.\\|\n\\)*\\$FlowExpected
; Following suppress comments are added to make it compatible with FB codebase or to allow smooth Flow
; upgrades while not being blocked on some already existing issues. You should not use them in your sources
; manually. Use $FlowIssue or $FlowPullRequest instead. Please read the following link to understand how
; is this comment being added automatically to our codebase:
; https://medium.com/flow-type/upgrading-flow-codebases-40ef8dd3ccd8
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]+\\)?)\\)
server.max_workers=2