This repository was archived by the owner on Apr 5, 2025. It is now read-only.
File tree 3 files changed +78
-0
lines changed 3 files changed +78
-0
lines changed Original file line number Diff line number Diff line change
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
+ # Ignore react-tools where there are overlaps, but don't ignore anything that
11
+ # react-native relies on
12
+ .*/node_modules/react-tools/src/React.js
13
+ .*/node_modules/react-tools/src/renderers/shared/event/EventPropagators.js
14
+ .*/node_modules/react-tools/src/renderers/shared/event/eventPlugins/ResponderEventPlugin.js
15
+ .*/node_modules/react-tools/src/shared/vendor/core/ExecutionEnvironment.js
16
+
17
+
18
+ # Ignore commoner tests
19
+ .*/node_modules/commoner/test/.*
20
+
21
+ # See https://github.com/facebook/flow/issues/442
22
+ .*/react-tools/node_modules/commoner/lib/reader.js
23
+
24
+ # Ignore jest
25
+ .*/react-native/node_modules/jest-cli/.*
26
+
27
+ [include]
28
+
29
+ [libs]
30
+ node_modules/react-native/Libraries/react-native/react-native-interface.js
31
+
32
+ [options]
33
+ module.system=haste
34
+
35
+ munge_underscores=true
36
+
37
+ module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
38
+ module.name_mapper='^[./a-zA-Z0-9$_-]+\.png$' -> 'RelativeImageStub'
39
+
40
+ suppress_type=$FlowIssue
41
+ suppress_type=$FlowFixMe
42
+ suppress_type=$FixMe
43
+
44
+ suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-6]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
45
+ suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-6]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+
46
+ suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
47
+
48
+ [version]
49
+ 0.16.0
Original file line number Diff line number Diff line change
1
+ # OSX
2
+ #
3
+ .DS_Store
4
+
5
+ # Xcode
6
+ #
7
+ build/
8
+ *.pbxuser
9
+ !default.pbxuser
10
+ *.mode1v3
11
+ !default.mode1v3
12
+ *.mode2v3
13
+ !default.mode2v3
14
+ *.perspectivev3
15
+ !default.perspectivev3
16
+ xcuserdata
17
+ *.xccheckout
18
+ *.moved-aside
19
+ DerivedData
20
+ *.hmap
21
+ *.ipa
22
+ *.xcuserstate
23
+ project.xcworkspace
24
+
25
+ # node.js
26
+ #
27
+ node_modules/
28
+ npm-debug.log
Original file line number Diff line number Diff line change
1
+ {}
You can’t perform that action at this time.
0 commit comments