ilink-world/.flowconfig

64 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-06-16 13:09:54 +00:00
[ignore]
; We fork some components by platform
.*/*[.]android.js
; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/
; Ignore polyfills
2023-03-12 23:38:33 +00:00
node_modules/react-native/Libraries/polyfills/.*
2019-06-16 13:09:54 +00:00
2023-03-12 23:38:33 +00:00
; Flow doesn't support platforms
.*/Libraries/Utilities/LoadingView.js
[untyped]
.*/node_modules/@react-native-community/cli/.*/.*
2019-06-16 13:09:54 +00:00
[include]
[libs]
2023-03-12 23:38:33 +00:00
node_modules/react-native/interface.js
2019-06-16 13:09:54 +00:00
node_modules/react-native/flow/
[options]
emoji=true
2023-03-12 23:38:33 +00:00
exact_by_default=true
2019-06-16 13:09:54 +00:00
2023-03-12 23:38:33 +00:00
module.file_ext=.js
module.file_ext=.json
module.file_ext=.ios.js
2019-06-16 13:09:54 +00:00
munge_underscores=true
2023-03-12 23:38:33 +00:00
module.name_mapper='^react-native/\(.*\)$' -> '<PROJECT_ROOT>/node_modules/react-native/\1'
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\)$' -> '<PROJECT_ROOT>/node_modules/react-native/Libraries/Image/RelativeImageStub'
2019-06-16 13:09:54 +00:00
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState
2023-03-12 23:38:33 +00:00
[lints]
sketchy-null-number=warn
sketchy-null-mixed=warn
sketchy-number=warn
untyped-type-import=warn
nonstrict-import=warn
deprecated-type=warn
unsafe-getters-setters=warn
unnecessary-invariant=warn
signature-verification-failure=warn
[strict]
deprecated-type
nonstrict-import
sketchy-null
unclear-type
unsafe-getters-setters
untyped-import
untyped-type-import
2019-06-16 13:09:54 +00:00
[version]
2023-03-12 23:38:33 +00:00
^0.149.0