Skip to content

Commit 85a16f8

Browse files
author
Jessy NAUS
committed
Add a gitignore file and start ignore the .swiftpm/xcode directory.
1 parent 2135fd7 commit 85a16f8

File tree

3 files changed

+82
-19
lines changed

3 files changed

+82
-19
lines changed

.gitignore

+82-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,83 @@
1-
.DS_Store
2-
/.build
3-
/Packages
4-
/*.xcodeproj
1+
# Created by https://www.gitignore.io/api/swift
2+
# Edit at https://www.gitignore.io/?templates=swift
3+
4+
### Swift ###
5+
# Xcode
6+
#
7+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
8+
9+
## Build generated
10+
build/
11+
DerivedData/
12+
13+
## Various settings
14+
*.pbxuser
15+
!default.pbxuser
16+
*.mode1v3
17+
!default.mode1v3
18+
*.mode2v3
19+
!default.mode2v3
20+
*.perspectivev3
21+
!default.perspectivev3
522
xcuserdata/
23+
24+
## Other
25+
*.moved-aside
26+
*.xccheckout
27+
*.xcscmblueprint
28+
29+
## Obj-C/Swift specific
30+
*.hmap
31+
*.ipa
32+
*.dSYM.zip
33+
*.dSYM
34+
35+
## Playgrounds
36+
timeline.xctimeline
37+
playground.xcworkspace
38+
39+
# Swift Package Manager
40+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
41+
# Packages/
42+
# Package.pins
43+
# Package.resolved
44+
.build/
45+
# Add this line if you want to avoid checking in Xcode SPM integration.
46+
.swiftpm/xcode
47+
48+
# CocoaPods
49+
# We recommend against adding the Pods directory to your .gitignore. However
50+
# you should judge for yourself, the pros and cons are mentioned at:
51+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
52+
# Pods/
53+
# Add this line if you want to avoid checking in source code from the Xcode workspace
54+
# *.xcworkspace
55+
56+
# Carthage
57+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
58+
# Carthage/Checkouts
59+
60+
Carthage/Build
61+
62+
# Accio dependency management
63+
Dependencies/
64+
.accio/
65+
66+
# fastlane
67+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
68+
# screenshots whenever they are needed.
69+
# For more information about the recommended setup visit:
70+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
71+
72+
fastlane/report.xml
73+
fastlane/Preview.html
74+
fastlane/screenshots/**/*.png
75+
fastlane/test_output
76+
77+
# Code Injection
78+
# After new code Injection tools there's a generated folder /iOSInjectionProject
79+
# https://github.com/johnno1962/injectionforxcode
80+
81+
iOSInjectionProject/
82+
83+
# End of https://www.gitignore.io/api/swift

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

-7
This file was deleted.

.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

-8
This file was deleted.

0 commit comments

Comments
 (0)