-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
198 lines (168 loc) · 5.29 KB
/
.gitignore
File metadata and controls
198 lines (168 loc) · 5.29 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# SaneApps Canonical .gitignore
# Source of truth: infra/SaneProcess/templates/gitignore
# Sync via: ruby scripts/sync_check.rb --fix
# ═══════════════════════════════════════════════════════════════
# Build artifacts
# ═══════════════════════════════════════════════════════════════
build_log*.txt
build_output*.txt
test_output*.txt
*.log
# Xcode
*.xcuserstate
*.xcuserstatedata
xcuserdata/
DerivedData/
.derivedData/
.swiftpm/
build_debug/
build_release/
Packages/**/.build/
Packages/**/.swiftpm/
*.xcresult/
*.xccheckout/
*.xcworkspace/contents.xcworkspacedata
# macOS
.DS_Store
# Build
build/
.build/
.build-logs/
.build-minimal/
*.backup*
vendor/
.bundle/
# Release artifacts (distributed via Cloudflare R2, not repo)
releases/
*.dmg
*.xcarchive/
*.pkg
*.zip
# ═══════════════════════════════════════════════════════════════
# Claude Code auto-generated context files
# ═══════════════════════════════════════════════════════════════
# Nested CLAUDE.md files are auto-generated context — only root CLAUDE.md is real
**/CLAUDE.md
!/CLAUDE.md
# Agent artifacts
.agent/
.claude-mem/
# ═══════════════════════════════════════════════════════════════
# Tooling
# ═══════════════════════════════════════════════════════════════
# Gemini/Agentic
.gemini/
.mcp.json
# Claude Code - track project config, ignore user/transient state
.claude/settings.local.json
.claude/edit_state.json
.claude/memory.json
.claude/state.json
.claude/state.json.lock
.claude/phase_state.json
.claude/failure_state.json
.claude/audit.jsonl
.claude/audit_log.jsonl
.claude/prompt_log.jsonl
.claude/learnings.jsonl
.claude/SESSION_HANDOFF_*.md
.claude/archive/
.claude/*.log.old
.claude/*count*.json
.claude/enforcement_log.jsonl
.claude/sanetrack.log.old
.claude/sanetools.log.old
.claude/research_*.json*
.claude/research-locks.json
.claude/enforcement_*.json
.claude/memory_checked.json
.claude/recent_actions.json
.claude/read_history.json
.claude/user_patterns.json
.claude/bypass_mode.txt
.claude/sop-verify-state.json
.claude/saneloop-archive/
.claude/research/
.claude/rule_tracking.jsonl
.claude/bugs.md
.claude/hook_*.md
.claude/SOP*.md
.claude/PROJECT*.md
# IDE - Keep shared settings, ignore user-specific files
.cursor/settings.json
.vscode/settings.json
.vscode/tasks.json
.vscode/launch.json
.vscode/extensions.json
!.cursor/
!.vscode/
# Node/Wrangler
node_modules/
.wrangler/
# Serena
.serena/
# ═══════════════════════════════════════════════════════════════
# Media (keep app assets, ignore test/marketing/root)
# ═══════════════════════════════════════════════════════════════
# Large media/test artifacts
*.mp4
*.mov
*.m4v
*.m4a
*.profraw
TranscriptionTest*/
TestReports/
# Images - ignore in root/tests, but keep app assets
/*.png
/*.jpg
/*.jpeg
/Screenshots/**/*.png
/Screenshots/**/*.jpg
/Tests/**/*.png
/Tests/**/*.jpg
marketing/*.png
marketing/*.jpg
!marketing/app-icon.png
# Keep all xcassets (app icons, etc)
!Resources/Assets.xcassets/**/*.png
!Resources/Assets.xcassets/**/*.jpg
# ═══════════════════════════════════════════════════════════════
# Release tooling
# ═══════════════════════════════════════════════════════════════
# Fastlane
fastlane/coverage/
fastlane/keys/
fastlane/report.xml
fastlane/test_output/
fastlane/gym_output/
# Code coverage
*.gcda
*.gcno
TestOutput.xcresult/
*.o
# Provisioning Profiles (sensitive)
Provisioning/
# CI artifacts
project.yml.ci_backup
# Sparkle (never commit private key)
sparkle_private_key.txt
# Local hook overrides
lefthook-local.yml
# ═══════════════════════════════════════════════════════════════
# Ephemeral docs (AI-generated, auto-cleaned)
# ═══════════════════════════════════════════════════════════════
reports/
*_AUDIT.md
*_REVIEW.md
CODE_REVIEW.md
WEBSITE_AUDIT.md
FEATURE_PLAN.md
BUG_TRACKING.md
# Generated output
Output/
outputs/
# Local test artifacts
MinimalTest/
*.bak
project.yml.bak
scripts/*.swift