Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

.flowconfig 3.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. [ignore]
  2. ; We fork some components by platform
  3. .*/*[.]android.js
  4. ; Ignore "BUCK" generated dirs
  5. <PROJECT_ROOT>/\.buckd/
  6. ; Ignore unexpected extra "@providesModule"
  7. .*/node_modules/.*/node_modules/fbjs/.*
  8. ; Ignore duplicate module providers
  9. ; For RN Apps installed via npm, "Libraries" folder is inside
  10. ; "node_modules/react-native" but in the source repo it is in the root
  11. .*/Libraries/react-native/React.js
  12. .*/Libraries/react-native/ReactNative.js
  13. ; Ignore polyfills
  14. .*/Libraries/polyfills/.*
  15. ; Ignore packages in node_modules which we (i.e. the jitsi-meet project) have
  16. ; seen to cause errors and we have chosen not to fix.
  17. .*/node_modules/@atlassian
  18. .*/node_modules/bower/lib/node_modules/bower-json/test/.*
  19. .*/node_modules/jsonlint/test/.*
  20. ; FIXME Remove once we update past this commit:
  21. ; https://github.com/facebook/react-native/commit/df8d0d1db9203cc87ad3682e6138b2a9ed714365
  22. .*/node_modules/react-native/local-cli/link/link.js
  23. .*/node_modules/react-native-keep-awake/.*
  24. .*/node_modules/styled-components/.*
  25. .*/\.git/.*
  26. [include]
  27. [libs]
  28. node_modules/react-native/Libraries/react-native/react-native-interface.js
  29. node_modules/react-native/flow
  30. [options]
  31. emoji=true
  32. module.system=haste
  33. ; FIXME: munge_underscores should be false but right now there are some errors
  34. ; if we change the value to false
  35. ; Treats class properties with underscore as private. Disabled because currently
  36. ; for us "_" can mean protected too.
  37. ; munge_underscores=false
  38. munge_underscores=true
  39. ; FIXME Remove once we update past this commit:
  40. ; https://github.com/facebook/react-native/commit/df8d0d1db9203cc87ad3682e6138b2a9ed714365
  41. module.name_mapper='^./link/link$' -> 'emptyObject'
  42. 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'
  43. suppress_type=$FlowIssue
  44. suppress_type=$FlowFixMe
  45. suppress_type=$FlowFixMeProps
  46. suppress_type=$FlowFixMeState
  47. suppress_type=$FixMe
  48. suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)
  49. suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-3]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+
  50. suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
  51. suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
  52. suppress_comment=\\(.\\|\n\\)*\\$FlowDisableNextLine
  53. unsafe.enable_getters_and_setters=true
  54. ; We (i.e. the jitsi-meet project) are using the haste module system on Web as
  55. ; well, not only on React Native. Unfortunately, Flow does not support .web.js
  56. ; by default. Override Flow's defaults to include .web.js as well. Technically,
  57. ; we have .native.js as well so the choice of .web.js may lead to errors.
  58. ; Practically though, it is a potential future problem that we do not have at
  59. ; the time of this writing.
  60. module.file_ext=.web.js
  61. ; Flow's defaults:
  62. module.file_ext=.js
  63. module.file_ext=.jsx
  64. module.file_ext=.json
  65. [version]
  66. ^0.53.0