weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

.flowconfig (1483B)


      1 [ignore]
      2 ; We fork some components by platform
      3 .*/*[.]android.js
      4 
      5 ; Ignore "BUCK" generated dirs
      6 <PROJECT_ROOT>/\.buckd/
      7 
      8 ; Ignore unexpected extra "@providesModule"
      9 .*/node_modules/.*/node_modules/fbjs/.*
     10 
     11 ; Ignore duplicate module providers
     12 ; For RN Apps installed via npm, "Libraries" folder is inside
     13 ; "node_modules/react-native" but in the source repo it is in the root
     14 .*/Libraries/react-native/React.js
     15 
     16 ; Ignore polyfills
     17 .*/Libraries/polyfills/.*
     18 
     19 ; Ignore metro
     20 .*/node_modules/metro/.*
     21 
     22 [include]
     23 
     24 [libs]
     25 node_modules/react-native/Libraries/react-native/react-native-interface.js
     26 node_modules/react-native/flow/
     27 node_modules/react-native/flow-github/
     28 
     29 [options]
     30 emoji=true
     31 
     32 module.system=haste
     33 
     34 munge_underscores=true
     35 
     36 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'
     37 
     38 module.file_ext=.js
     39 module.file_ext=.jsx
     40 module.file_ext=.json
     41 module.file_ext=.native.js
     42 
     43 suppress_type=$FlowIssue
     44 suppress_type=$FlowFixMe
     45 suppress_type=$FlowFixMeProps
     46 suppress_type=$FlowFixMeState
     47 
     48 suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
     49 suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
     50 suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
     51 suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
     52 
     53 [version]
     54 ^0.65.0