Skip to content

Commit d8cefdb

Browse files
committed
first init
0 parents  commit d8cefdb

11 files changed

Lines changed: 797 additions & 0 deletions

File tree

.gitignore

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
2+
# Created by https://www.gitignore.io/api/macos,swift
3+
4+
### macOS ###
5+
*.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
12+
# Thumbnails
13+
._*
14+
15+
# Files that might appear in the root of a volume
16+
.DocumentRevisions-V100
17+
.fseventsd
18+
.Spotlight-V100
19+
.TemporaryItems
20+
.Trashes
21+
.VolumeIcon.icns
22+
.com.apple.timemachine.donotpresent
23+
24+
# Directories potentially created on remote AFP share
25+
.AppleDB
26+
.AppleDesktop
27+
Network Trash Folder
28+
Temporary Items
29+
.apdisk
30+
31+
### Swift ###
32+
# Xcode
33+
#
34+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
35+
36+
## Build generated
37+
build/
38+
DerivedData/
39+
40+
## Various settings
41+
*.pbxuser
42+
!default.pbxuser
43+
*.mode1v3
44+
!default.mode1v3
45+
*.mode2v3
46+
!default.mode2v3
47+
*.perspectivev3
48+
!default.perspectivev3
49+
xcuserdata/
50+
51+
## Other
52+
*.moved-aside
53+
*.xccheckout
54+
*.xcscmblueprint
55+
56+
## Obj-C/Swift specific
57+
*.hmap
58+
*.ipa
59+
*.dSYM.zip
60+
*.dSYM
61+
62+
## Playgrounds
63+
timeline.xctimeline
64+
playground.xcworkspace
65+
66+
# Swift Package Manager
67+
#
68+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
69+
# Packages/
70+
# Package.pins
71+
.build/
72+
73+
# CocoaPods - Refactored to standalone file
74+
75+
# Carthage - Refactored to standalone file
76+
77+
# fastlane
78+
#
79+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
80+
# screenshots whenever they are needed.
81+
# For more information about the recommended setup visit:
82+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
83+
84+
fastlane/report.xml
85+
fastlane/Preview.html
86+
fastlane/screenshots
87+
fastlane/test_output
88+
89+
### Swift.Carthage Stack ###
90+
# Carthage
91+
#
92+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
93+
# Carthage/Checkouts
94+
95+
Carthage/Build
96+
97+
### Swift.CocoaPods Stack ###
98+
## CocoaPods GitIgnore Template
99+
100+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
101+
# - Also handy if you have a lage number of dependant pods
102+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE
103+
Pods/
104+
105+
# End of https://www.gitignore.io/api/macos,swift

0 commit comments

Comments
 (0)