Skip to content

Commit 05d2827

Browse files
committed
add igorning rules
1 parent 1266c79 commit 05d2827

File tree

1 file changed

+127
-0
lines changed

1 file changed

+127
-0
lines changed

.gitignore

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
*~
2+
.DS_Store
3+
4+
5+
# Created by https://www.gitignore.io/api/osx,xcode,swift
6+
# Edit at https://www.gitignore.io/?templates=osx,xcode,swift
7+
8+
### OSX ###
9+
# General
10+
.DS_Store
11+
.AppleDouble
12+
.LSOverride
13+
14+
# Icon must end with two \r
15+
Icon
16+
17+
# Thumbnails
18+
._*
19+
20+
# Files that might appear in the root of a volume
21+
.DocumentRevisions-V100
22+
.fseventsd
23+
.Spotlight-V100
24+
.TemporaryItems
25+
.Trashes
26+
.VolumeIcon.icns
27+
.com.apple.timemachine.donotpresent
28+
29+
# Directories potentially created on remote AFP share
30+
.AppleDB
31+
.AppleDesktop
32+
Network Trash Folder
33+
Temporary Items
34+
.apdisk
35+
36+
### Swift ###
37+
# Xcode
38+
#
39+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
40+
41+
## Build generated
42+
build/
43+
DerivedData/
44+
45+
## Various settings
46+
*.pbxuser
47+
!default.pbxuser
48+
*.mode1v3
49+
!default.mode1v3
50+
*.mode2v3
51+
!default.mode2v3
52+
*.perspectivev3
53+
!default.perspectivev3
54+
xcuserdata/
55+
56+
## Other
57+
*.moved-aside
58+
*.xccheckout
59+
*.xcscmblueprint
60+
61+
## Obj-C/Swift specific
62+
*.hmap
63+
*.ipa
64+
*.dSYM.zip
65+
*.dSYM
66+
67+
## Playgrounds
68+
timeline.xctimeline
69+
playground.xcworkspace
70+
71+
# Swift Package Manager
72+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
73+
# Packages/
74+
# Package.pins
75+
# Package.resolved
76+
.build/
77+
78+
# CocoaPods
79+
# We recommend against adding the Pods directory to your .gitignore. However
80+
# you should judge for yourself, the pros and cons are mentioned at:
81+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
82+
# Pods/
83+
# Add this line if you want to avoid checking in source code from the Xcode workspace
84+
# *.xcworkspace
85+
86+
# Carthage
87+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
88+
# Carthage/Checkouts
89+
90+
Carthage/Build
91+
92+
# fastlane
93+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
94+
# screenshots whenever they are needed.
95+
# For more information about the recommended setup visit:
96+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
97+
98+
fastlane/report.xml
99+
fastlane/Preview.html
100+
fastlane/screenshots/**/*.png
101+
fastlane/test_output
102+
103+
# Code Injection
104+
# After new code Injection tools there's a generated folder /iOSInjectionProject
105+
# https://github.com/johnno1962/injectionforxcode
106+
107+
iOSInjectionProject/
108+
109+
### Xcode ###
110+
# Xcode
111+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
112+
113+
## User settings
114+
115+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
116+
117+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
118+
119+
### Xcode Patch ###
120+
*.xcodeproj/*
121+
!*.xcodeproj/project.pbxproj
122+
!*.xcodeproj/xcshareddata/
123+
!*.xcworkspace/contents.xcworkspacedata
124+
/*.gcno
125+
**/xcshareddata/WorkspaceSettings.xcsettings
126+
127+
# End of https://www.gitignore.io/api/osx,xcode,swift

0 commit comments

Comments
 (0)