Blame view

.flowconfig 1.84 KB
于良 authored
1 2 3
[ignore]

# We fork some components by platform.
4
.*/*[.]android.js
于良 authored
5
6
# Ignore templates with `@flow` in header
于良 authored
7 8
.*/local-cli/generator.*
9 10
# Ignore malformed json
.*/node_modules/y18n/test/.*\.json
于良 authored
11
12 13
# Ignore the website subdir
<PROJECT_ROOT>/website/.*
于良 authored
14
15 16 17 18 19
# Ignore BUCK generated dirs
<PROJECT_ROOT>/\.buckd/

# Ignore unexpected extra @providesModule
.*/node_modules/commoner/test/source/widget/share.js
于良 authored
20
21 22 23 24 25
# Ignore duplicate module providers
# For RN Apps installed via npm, "Libraries" folder is inside node_modules/react-native but in the source repo it is in the root
.*/Libraries/react-native/React.js
.*/Libraries/react-native/ReactNative.js
.*/node_modules/jest-runtime/build/__tests__/.*
于良 authored
26
27 28 29 30 31 32
; Ignore polyfills
.*/Libraries/polyfills/.*

; Ignore metro
.*/node_modules/metro/.*
于良 authored
33 34 35 36
[include]

[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
37 38
node_modules/react-native/flow/
node_modules/react-native/flow-github/
于良 authored
39 40 41 42 43 44 45 46 47 48 49 50 51 52

[options]
module.system=haste

esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable

experimental.strict_type_args=true

munge_underscores=true

module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
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'
53 54 55 56 57
module.file_ext=.js
module.file_ext=.jsx
module.file_ext=.json
module.file_ext=.native.js
于良 authored
58 59
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
60 61
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState
于良 authored
62 63

64 65 66
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
67
于良 authored
68
[version]
69
^0.65.0