|
| 1 | +[ignore] |
| 2 | + |
| 3 | +# We fork some components by platform. |
| 4 | +.*/*.web.js |
| 5 | +.*/*.android.js |
| 6 | + |
| 7 | +# Some modules have their own node_modules with overlap |
| 8 | +.*/node_modules/node-haste/.* |
| 9 | + |
| 10 | +# Ugh |
| 11 | +.*/node_modules/babel.* |
| 12 | +.*/node_modules/babylon.* |
| 13 | +.*/node_modules/invariant.* |
| 14 | + |
| 15 | +# Ignore react and fbjs where there are overlaps, but don't ignore |
| 16 | +# anything that react-native relies on |
| 17 | +.*/node_modules/fbjs/lib/Map.js |
| 18 | +.*/node_modules/fbjs/lib/fetch.js |
| 19 | +.*/node_modules/fbjs/lib/ExecutionEnvironment.js |
| 20 | +.*/node_modules/fbjs/lib/ErrorUtils.js |
| 21 | + |
| 22 | +# Flow has a built-in definition for the 'react' module which we prefer to use |
| 23 | +# over the currently-untyped source |
| 24 | +.*/node_modules/react/react.js |
| 25 | +.*/node_modules/react/lib/React.js |
| 26 | +.*/node_modules/react/lib/ReactDOM.js |
| 27 | + |
| 28 | +.*/__mocks__/.* |
| 29 | +.*/__tests__/.* |
| 30 | + |
| 31 | +.*/commoner/test/source/widget/share.js |
| 32 | + |
| 33 | +# Ignore commoner tests |
| 34 | +.*/node_modules/commoner/test/.* |
| 35 | + |
| 36 | +# See https://github.com/facebook/flow/issues/442 |
| 37 | +.*/react-tools/node_modules/commoner/lib/reader.js |
| 38 | + |
| 39 | +# Ignore jest |
| 40 | +.*/node_modules/jest-cli/.* |
| 41 | + |
| 42 | +# Ignore Website |
| 43 | +.*/website/.* |
| 44 | + |
| 45 | +[include] |
| 46 | + |
| 47 | +[libs] |
| 48 | +node_modules/react-native/Libraries/react-native/react-native-interface.js |
| 49 | + |
| 50 | +[options] |
| 51 | +module.system=haste |
| 52 | + |
| 53 | +esproposal.class_static_fields=enable |
| 54 | +esproposal.class_instance_fields=enable |
| 55 | + |
| 56 | +munge_underscores=true |
| 57 | + |
| 58 | +module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' |
| 59 | +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\)$' -> 'RelativeImageStub' |
| 60 | + |
| 61 | +suppress_type=$FlowIssue |
| 62 | +suppress_type=$FlowFixMe |
| 63 | +suppress_type=$FixMe |
| 64 | + |
| 65 | +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-1]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) |
| 66 | +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-1]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ |
| 67 | +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy |
| 68 | + |
| 69 | +[version] |
| 70 | +0.21.0 |
0 commit comments