-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
131 lines (117 loc) · 3.98 KB
/
.gitignore
File metadata and controls
131 lines (117 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
###############################################################################
# macOS & Finder
###############################################################################
.DS_Store
.AppleDouble
.LSOverride
Icon?
# macOS file metadata
._*
# macOS quarantine attributes
*.qlgenerator
*.dmg
.Trashes
.Spotlight-V100
.fseventsd
.idea/
###############################################################################
# Swift Package Manager
###############################################################################
# Build folder
.build/
# SwiftPM internal metadata
.swiftpm/
# Generated Xcode project if you ever call `swift package generate-xcodeproj`
Package.xcodeproj/
# Plugin‐generated sources & resources (Swift 5.9+)
.generated/
# SwiftPM binary cache (if you enable `--cache-builds`)
.swiftpm/xcode/package.cache
###############################################################################
# Xcode
###############################################################################
# Workspace/Project user data
*.xcuserstate
*.xcworkspace
**/*.xcuserdata/
# DerivedData & indexes
~/Library/Developer/Xcode/DerivedData/
.idea/
# Swift concurrency build logs
.swift-concurrency/*
# Completed XCFramework archives
*.xcframework.zip
###############################################################################
# Playgrounds & Swift Playgrounds App
###############################################################################
*.playground/
*.playgroundbook/
###############################################################################
# Fastlane
###############################################################################
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
###############################################################################
# CocoaPods (if your package includes an example app that uses pods)
###############################################################################
Pods/
Podfile.lock
.swift-version
###############################################################################
# Carthage (same caveat as above)
###############################################################################
Carthage/Build/
Carthage/Checkouts/
Carthage/*.json
###############################################################################
# Mint (CLI binary manager)
###############################################################################
~/.mint/
###############################################################################
# SPM-compatible Package collections cache
###############################################################################
~/.swiftpm/config/
###############################################################################
# Editor & IDE backups
###############################################################################
# VS Code
.vscode/*
# JetBrains
.idea/
*.iml
# Vim / Neovim
*.swp
*.swo
# Emacs
*~
\#*\#
.#*
# Xcode’s autogenerated editor backups
*~.nib
###############################################################################
# Logs & temporary files
###############################################################################
*.log
*.tmp
*.temp
*.bak
###############################################################################
# XCResult bundles (test & build reports)
###############################################################################
*.xcresult
###############################################################################
# Crash reports & profiling
###############################################################################
*.crash
*.xcactivitylog
*.moved-aside
###############################################################################
# SwiftDiagnostics / Sanitize debug info
###############################################################################
.swift-diagnostics
.swift-diagnostics-archive
###############################################################################
# End of file
###############################################################################