Skip to content

Commit 51b0a88

Browse files
committed
Initial commit
0 parents  commit 51b0a88

File tree

16 files changed

+1623
-0
lines changed

16 files changed

+1623
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Custom
6+
.swiftpm/
7+
8+
## User settings
9+
xcuserdata/
10+
11+
## Obj-C/Swift specific
12+
*.hmap
13+
14+
## App packaging
15+
*.ipa
16+
*.dSYM.zip
17+
*.dSYM
18+
19+
## Playgrounds
20+
timeline.xctimeline
21+
playground.xcworkspace
22+
23+
# Swift Package Manager
24+
#
25+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
26+
# Packages/
27+
# Package.pins
28+
# Package.resolved
29+
# *.xcodeproj
30+
#
31+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
32+
# hence it is not needed unless you have added a package configuration file to your project
33+
# .swiftpm
34+
35+
.build/
36+
37+
# CocoaPods
38+
#
39+
# We recommend against adding the Pods directory to your .gitignore. However
40+
# you should judge for yourself, the pros and cons are mentioned at:
41+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
42+
#
43+
# Pods/
44+
#
45+
# Add this line if you want to avoid checking in source code from the Xcode workspace
46+
# *.xcworkspace
47+
48+
# Carthage
49+
#
50+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
51+
# Carthage/Checkouts
52+
53+
Carthage/Build/
54+
55+
# fastlane
56+
#
57+
# It is recommended to not store the screenshots in the git repo.
58+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
59+
# For more information about the recommended setup visit:
60+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
61+
62+
fastlane/report.xml
63+
fastlane/Preview.html
64+
fastlane/screenshots/**/*.png
65+
fastlane/test_output

0 commit comments

Comments
 (0)