-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (43 loc) · 1.98 KB
/
.gitignore
File metadata and controls
48 lines (43 loc) · 1.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
# =============================================================================
# Insomnia macOS App — .gitignore
# Keeps build artifacts, IDE state, and release outputs out of version control.
# =============================================================================
# ---------------------------------------------------------------------------
# Swift Package Manager
# ---------------------------------------------------------------------------
# SPM build output — all compiled objects, intermediates, and executables
.build/
# SPM workspace state (machine-specific package resolution metadata)
.swiftpm/
# ---------------------------------------------------------------------------
# Xcode
# ---------------------------------------------------------------------------
# Xcode derived data — build logs, indexes, intermediate build products
DerivedData/
# Per-user Xcode state (window positions, breakpoints, schemes)
xcuserdata/
# Individual user state file inside xcuserdata (binary, changes on every focus)
*.xcuserstate
# Source control blueprints — Xcode's own SCM metadata (not needed with git)
*.xcscmblueprint
# ---------------------------------------------------------------------------
# macOS Finder metadata
# ---------------------------------------------------------------------------
# Desktop Services Store — Finder folder view preferences (auto-generated)
.DS_Store
# ---------------------------------------------------------------------------
# Release / Distribution artifacts
# ---------------------------------------------------------------------------
# Distribution directory — build-release.sh outputs signed binaries here
Distribution/
# Disk images — final release packaging artifact
*.dmg
# Zip archives — alternative release packaging artifact
*.zip
# ---------------------------------------------------------------------------
# Miscellaneous
# ---------------------------------------------------------------------------
# Vim swap files
*.swp
# Editor backup files
*~