Skip to content

Commit 0e220ce

Browse files
committed
init
0 parents  commit 0e220ce

File tree

20 files changed

+1571
-0
lines changed

20 files changed

+1571
-0
lines changed

.gitignore

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
### Generated by gibo (https://github.com/simonwhitaker/gibo)
2+
### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Global/Xcode.gitignore
3+
4+
## User settings
5+
xcuserdata/
6+
7+
## Xcode 8 and earlier
8+
*.xcscmblueprint
9+
*.xccheckout
10+
11+
12+
### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Swift.gitignore
13+
14+
# Xcode
15+
#
16+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
17+
18+
## User settings
19+
xcuserdata/
20+
21+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
22+
*.xcscmblueprint
23+
*.xccheckout
24+
25+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
26+
build/
27+
DerivedData/
28+
*.moved-aside
29+
*.pbxuser
30+
!default.pbxuser
31+
*.mode1v3
32+
!default.mode1v3
33+
*.mode2v3
34+
!default.mode2v3
35+
*.perspectivev3
36+
!default.perspectivev3
37+
38+
## Obj-C/Swift specific
39+
*.hmap
40+
41+
## App packaging
42+
*.ipa
43+
*.dSYM.zip
44+
*.dSYM
45+
46+
## Playgrounds
47+
timeline.xctimeline
48+
playground.xcworkspace
49+
50+
# Swift Package Manager
51+
#
52+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
53+
# Packages/
54+
# Package.pins
55+
# Package.resolved
56+
# *.xcodeproj
57+
#
58+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
59+
# hence it is not needed unless you have added a package configuration file to your project
60+
# .swiftpm
61+
62+
.build/
63+
64+
# CocoaPods
65+
#
66+
# We recommend against adding the Pods directory to your .gitignore. However
67+
# you should judge for yourself, the pros and cons are mentioned at:
68+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
69+
#
70+
# Pods/
71+
#
72+
# Add this line if you want to avoid checking in source code from the Xcode workspace
73+
# *.xcworkspace
74+
75+
# Carthage
76+
#
77+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
78+
# Carthage/Checkouts
79+
80+
Carthage/Build/
81+
82+
# Accio dependency management
83+
Dependencies/
84+
.accio/
85+
86+
# fastlane
87+
#
88+
# It is recommended to not store the screenshots in the git repo.
89+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
90+
# For more information about the recommended setup visit:
91+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
92+
93+
fastlane/report.xml
94+
fastlane/Preview.html
95+
fastlane/screenshots/**/*.png
96+
fastlane/test_output
97+
98+
# Code Injection
99+
#
100+
# After new code Injection tools there's a generated folder /iOSInjectionProject
101+
# https://github.com/johnno1962/injectionforxcode
102+
103+
iOSInjectionProject/
104+
105+
106+
### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Objective-C.gitignore
107+
108+
# Xcode
109+
#
110+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
111+
112+
## User settings
113+
xcuserdata/
114+
115+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
116+
*.xcscmblueprint
117+
*.xccheckout
118+
119+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
120+
build/
121+
DerivedData/
122+
*.moved-aside
123+
*.pbxuser
124+
!default.pbxuser
125+
*.mode1v3
126+
!default.mode1v3
127+
*.mode2v3
128+
!default.mode2v3
129+
*.perspectivev3
130+
!default.perspectivev3
131+
132+
## Obj-C/Swift specific
133+
*.hmap
134+
135+
## App packaging
136+
*.ipa
137+
*.dSYM.zip
138+
*.dSYM
139+
140+
# CocoaPods
141+
#
142+
# We recommend against adding the Pods directory to your .gitignore. However
143+
# you should judge for yourself, the pros and cons are mentioned at:
144+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
145+
#
146+
Pods/
147+
#
148+
# Add this line if you want to avoid checking in source code from the Xcode workspace
149+
# *.xcworkspace
150+
151+
# Carthage
152+
#
153+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
154+
# Carthage/Checkouts
155+
156+
Carthage/Build/
157+
158+
# fastlane
159+
#
160+
# It is recommended to not store the screenshots in the git repo.
161+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
162+
# For more information about the recommended setup visit:
163+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
164+
165+
fastlane/report.xml
166+
fastlane/Preview.html
167+
fastlane/screenshots/**/*.png
168+
fastlane/test_output
169+
170+
# Code Injection
171+
#
172+
# After new code Injection tools there's a generated folder /iOSInjectionProject
173+
# https://github.com/johnno1962/injectionforxcode
174+
175+
iOSInjectionProject/
176+
177+
.DS_Store

0 commit comments

Comments
 (0)