Skip to content

Commit 74cad8a

Browse files
committed
add .gitignore
1 parent 1e26c70 commit 74cad8a

File tree

5 files changed

+327
-201
lines changed

5 files changed

+327
-201
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
template/build/
8+
template/*.pbxuser
9+
template/!default.pbxuser
10+
template/*.mode1v3
11+
template/!default.mode1v3
12+
template/*.mode2v3
13+
template/!default.mode2v3
14+
template/*.perspectivev3
15+
template/!default.perspectivev3
16+
template/xcuserdata
17+
template/*.xccheckout
18+
template/*.moved-aside
19+
template/DerivedData
20+
template/*.hmap
21+
template/*.ipa
22+
template/*.xcuserstate
23+
template/Pods/
24+
25+
# Android/IntelliJ
26+
#
27+
template/build/
28+
template/.idea
29+
template/.gradle
30+
template/local.properties
31+
template/*.iml
32+
33+
# Visual Studio Code
34+
#
35+
.vscode/
36+
37+
38+
# node.js
39+
#
40+
template/node_modules/
41+
template/npm-debug.log
42+
template/yarn-error.log
43+
44+
# BUCK
45+
buck-out/
46+
\.buckd/
47+
*.keystore
48+
!debug.keystore
49+
50+
# fastlane
51+
#
52+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
53+
# screenshots whenever they are needed.
54+
# For more information about the recommended setup visit:
55+
# https://docs.fastlane.tools/best-practices/source-control/
56+
57+
*/fastlane/report.xml
58+
*/fastlane/Preview.html
59+
*/fastlane/screenshots
60+
61+
# Bundle artifact
62+
*.jsbundle
63+
64+
# CocoaPods
65+
template/ios/Pods/
66+
template/ios/Podfile.lock
67+
template/android/build/
68+
69+
.DS_Store
70+
71+
# OSX
72+
#
73+
.DS_Store
74+
75+
# Xcode
76+
#
77+
build/
78+
*.pbxuser
79+
!default.pbxuser
80+
*.mode1v3
81+
!default.mode1v3
82+
*.mode2v3
83+
!default.mode2v3
84+
*.perspectivev3
85+
!default.perspectivev3
86+
xcuserdata
87+
*.xccheckout
88+
*.moved-aside
89+
DerivedData
90+
*.hmap
91+
*.ipa
92+
*.xcuserstate
93+
94+
# Android/IntelliJ
95+
#
96+
build/
97+
.idea
98+
.gradle
99+
local.properties
100+
*.iml
101+
102+
# Visual Studio Code
103+
#
104+
.vscode/
105+
106+
# node.js
107+
#
108+
node_modules/
109+
npm-debug.log
110+
yarn-error.log
111+
112+
# BUCK
113+
buck-out/
114+
\.buckd/
115+
*.keystore
116+
!debug.keystore
117+
118+
# fastlane
119+
#
120+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
121+
# screenshots whenever they are needed.
122+
# For more information about the recommended setup visit:
123+
# https://docs.fastlane.tools/best-practices/source-control/
124+
125+
*/fastlane/report.xml
126+
*/fastlane/Preview.html
127+
*/fastlane/screenshots
128+
129+
# Bundle artifact
130+
*.jsbundle
131+
132+
# CocoaPods
133+
/ios/Pods/

.idea/vcs.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)