react-native-navigation的迁移库

.flowconfig 2.7KB

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