Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

.flowconfig 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 packages in node_modules which we (i.e. the jitsi-meet project) have
  14. ; seen to cause errors and we have chosen not to fix.
  15. .*/node_modules/babel-core/.*
  16. .*/node_modules/bower/.*
  17. .*/node_modules/jsonlint/.*
  18. [include]
  19. [libs]
  20. node_modules/react-native/Libraries/react-native/react-native-interface.js
  21. node_modules/react-native/flow
  22. flow/
  23. [options]
  24. emoji=true
  25. module.system=haste
  26. experimental.strict_type_args=true
  27. munge_underscores=true
  28. 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'
  29. suppress_type=$FlowIssue
  30. suppress_type=$FlowFixMe
  31. suppress_type=$FixMe
  32. suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
  33. suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
  34. suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
  35. unsafe.enable_getters_and_setters=true
  36. [version]
  37. ^0.38.0