Skip to content

Instantly share code, notes, and snippets.

@ts-ign0re
Created December 16, 2019 09:14
Show Gist options
  • Save ts-ign0re/82993c8291c0e8b20aeeadf4cbb30fe3 to your computer and use it in GitHub Desktop.
Save ts-ign0re/82993c8291c0e8b20aeeadf4cbb30fe3 to your computer and use it in GitHub Desktop.
[ignore]
; We fork some components by platform
.*/*[.]android.js
; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/
; Ignore unexpected extra "@providesModule"
.*/node_modules/.*/node_modules/fbjs/.*
; 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
; Ignore polyfills
.*/Libraries/polyfills/.*
; Ignore metro
.*/node_modules/metro/.*
; Ignore ScrollView
.*/node_modules/react-native-keyboard-aware-scroll-view/.*
.*/web/node_modules/jsonlint/test/.*
[include]
[libs]
mobile/platform/node_modules/react-native/Libraries/react-native/react-native-interface.js
mobile/platform/node_modules/react-native/flow/
mobile/platform/typings
web/node_modules/iflow-chartist/index.js.flow
[options]
all=false
sharedmemory.hash_table_pow=21
emoji=true
esproposal.optional_chaining=enable
esproposal.nullish_coalescing=enable
module.system=haste
module.system.haste.use_name_reducers=true
# get basename
module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
# strip .js or .js.flow suffix
module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
# strip .ios suffix
module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
module.system.haste.paths.blacklist=.*/__tests__/.*
module.system.haste.paths.blacklist=.*/__mocks__/.*
module.system.haste.paths.blacklist=<PROJECT_ROOT>/mobile/platform/node_modules/react-native/Libraries/Animated/src/polyfills/.*
module.system.haste.paths.whitelist=<PROJECT_ROOT>/mobile/platform/node_modules/react-native/Libraries/.*
munge_underscores=true
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'
; Need resolve webpack aliases
module.name_mapper='^Utils\(.*\)$' -> '<PROJECT_ROOT>/web/app/utils\1'
module.name_mapper='^Svg\(.*\)$' -> '<PROJECT_ROOT>/web/app/svg\1'
module.name_mapper='^Api\(.*\)$' -> '<PROJECT_ROOT>/web/app/api\1'
module.name_mapper='^Model\(.*\)$' -> '<PROJECT_ROOT>/web/app/model\1'
module.name_mapper='^Components\(.*\)$' -> '<PROJECT_ROOT>/web/app/components\1'
module.name_mapper='^Containers\(.*\)$' -> '<PROJECT_ROOT>/web/app/containers\1'
; mobile alias
module.name_mapper='^App/' ->'<PROJECT_ROOT>/mobile/platform/App/'
module.file_ext=.js
module.file_ext=.jsx
module.file_ext=.json
module.file_ext=.native.js
module.file_ext=.ios.js
module.file_ext=.android.js
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState
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
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
[version]
^0.92.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment