Skip to content

Instantly share code, notes, and snippets.

@almost
Created January 21, 2016 10:23
Show Gist options
  • Save almost/20c6caf6d18d0e5c689f to your computer and use it in GitHub Desktop.
Save almost/20c6caf6d18d0e5c689f to your computer and use it in GitHub Desktop.
[ignore]
# We fork some components by platform.
.*/*.web.js
.*/*.android.js
# Some modules have their own node_modules with overlap
.*/node_modules/node-haste/.*
# Ugh
.*/node_modules/babel/.*
.*/node_modules/babylon.*
# Ignore react and fbjs where there are overlaps, but don't ignore
# anything that react-native relies on
.*/node_modules/fbjs/lib/Map.js
.*/node_modules/fbjs/lib/Promise.js
.*/node_modules/fbjs/lib/fetch.js
.*/node_modules/fbjs/lib/ExecutionEnvironment.js
.*/node_modules/fbjs/lib/isEmpty.js
.*/node_modules/fbjs/lib/crc32.js
.*/node_modules/fbjs/lib/ErrorUtils.js
# Flow has a built-in definition for the 'react' module which we prefer to use
# over the currently-untyped source
.*/node_modules/react/react.js
.*/node_modules/react/lib/React.js
.*/node_modules/react/lib/ReactDOM.js
# Ignore commoner tests
.*/node_modules/commoner/test/.*
# See https://github.com/facebook/flow/issues/442
.*/react-tools/node_modules/commoner/lib/reader.js
# Ignore jest
.*/node_modules/jest-cli/.*
.*/node_modules/flux/lib/invariant.js
./node_modules/react-native-overlay
./node_modules/react-native-overlay/Overlay.ios.js
./node_modules/react-native-overlay/.*
node_modules/react-native-overlay
node_modules/react-native-overlay/Overlay.ios.js
node_modules/react-native-overlay/.*
/node_modules/react-native-overlay
/node_modules/react-native-overlay/Overlay.ios.js
/node_modules/react-native-overlay/.*
.*/node_modules/babel-eslint/.*
.*/node_modules/jest-cli/.*
.*/node_modules/react-native/node_modules/jstransform/.*
.*/node_modules/react-native/Examples/.*
.*/node_modules/gulp-babel/.*
.*/node_modules/jest-cli/.*
.*/flow/include/abstractMethod.js
.*/flow/include/Dispatcher.js
.*/flow/include/EventEmitter.js
.*/flow/include/FluxContainer.js
.*/flow/include/FluxMapStore.js
.*/flow/include/FluxMixinLegacy.js
.*/flow/include/FluxReduceStore.js
.*/flow/include/FluxStore.js
.*/flow/include/FluxStoreGroup.js
.*/node_modules/fbemitter/.*
# TEMPORARY WHILE I DO THE HORRIBLE OVERRIDING HACK
.*/node_modules/react-native/Libraries/CustomComponents/Navigator/NavigatorNavigationBarStyles.ios
[include]
./js
./node_modules
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
interfaces
[options]
module.system=haste
module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
module.name_mapper='^[./a-zA-Z0-9$_-]+\.png$' -> 'RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowIgnore
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-8]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-8]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
[version]
0.20.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment