Files: 57f715d7df7dc32f4a285df821933c0f7e0afa97 / .flowconfig
1567 bytesRaw
1 | [ignore] |
2 | ; We fork some components by platform |
3 | .*/*[.]android.js |
4 | |
5 | ; Ignore "BUCK" generated dirs |
6 | <PROJECT_ROOT>/\.buckd/ |
7 | |
8 | ; Ignore unexpected extra "@providesModule" |
9 | .*/node_modules/.*/node_modules/fbjs/.* |
10 | |
11 | ; Ignore duplicate module providers |
12 | ; For RN Apps installed via npm, "Libraries" folder is inside |
13 | ; "node_modules/react-native" but in the source repo it is in the root |
14 | .*/Libraries/react-native/React.js |
15 | |
16 | ; Ignore polyfills |
17 | .*/Libraries/polyfills/.* |
18 | |
19 | ; Ignore pre-bundled background node.js project |
20 | <PROJECT_ROOT>/rnnodeapp |
21 | |
22 | ; Ignore TypeScript project |
23 | <PROJECT_ROOT>/src |
24 | |
25 | [include] |
26 | |
27 | [libs] |
28 | node_modules/react-native/Libraries/react-native/react-native-interface.js |
29 | node_modules/react-native/flow/ |
30 | |
31 | [options] |
32 | emoji=true |
33 | |
34 | module.system=haste |
35 | |
36 | munge_underscores=true |
37 | |
38 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' |
39 | |
40 | suppress_type=$FlowIssue |
41 | suppress_type=$FlowFixMe |
42 | suppress_type=$FlowFixMeProps |
43 | suppress_type=$FlowFixMeState |
44 | suppress_type=$FixMe |
45 | |
46 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) |
47 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ |
48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy |
49 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError |
50 | |
51 | unsafe.enable_getters_and_setters=true |
52 | |
53 | [version] |
54 | ^0.53.0 |
55 |
Built with git-ssb-web