Skip to content

Commit 3124aa4

Browse files
committed
Add a gitignore
1 parent e8852a0 commit 3124aa4

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# --------------------------------
2+
# macOS temporary files
3+
# --------------------------------
4+
.DS_Store
5+
*.lock
6+
*.swp
7+
8+
# --------------------------------
9+
# Xcode
10+
# --------------------------------
11+
!default.mode1v3
12+
!default.mode2v3
13+
!default.pbxuser
14+
!default.perspectivev3
15+
!default.xcworkspace
16+
!xcschemes
17+
!xcshareddata
18+
.build/
19+
.swiftpm/
20+
*.hmap
21+
*.ipa
22+
*.mode1v3
23+
*.mode2v3
24+
*.moved-aside
25+
*.pbxuser
26+
*.perspectivev3
27+
*.xccheckout
28+
*.xcscmblueprint
29+
*.xcuserstate
30+
*.xcworkspacedata
31+
*~.nib
32+
build/
33+
Builds/
34+
DerivedData/
35+
xcuserdata
36+
IDEWorkspaceChecks.plist
37+
38+
# --------------------------------
39+
# IntelliJ
40+
# --------------------------------
41+
.idea/
42+
43+
# --------------------------------
44+
# Visual Studio Code
45+
# --------------------------------
46+
.vscode/
47+
48+
# --------------------------------
49+
# Cursor
50+
# --------------------------------
51+
.cursor/
52+
53+
# --------------------------------
54+
# CocoaPods
55+
# --------------------------------
56+
!Podfile
57+
!Podfile.lock
58+
Pods/
59+
60+
# --------------------------------
61+
# Carthage
62+
# --------------------------------
63+
!Cartfile
64+
!Cartfile.private
65+
!Cartfile.resolved
66+
!Carthage/Checkouts
67+
Carthage/Build
68+
Carthage/Build.rbenv-vars
69+
70+
# --------------------------------
71+
# Fastlane
72+
# --------------------------------
73+
fastlane/Preview.html
74+
fastlane/report.xml
75+
fastlane/test_output
76+
77+
# --------------------------------
78+
# dotenv
79+
# --------------------------------
80+
.env
81+
82+
# --------------------------------
83+
# rbenv
84+
# --------------------------------
85+
.rbenv-vars

0 commit comments

Comments
 (0)