chore: gitignore Xcode/Swift files to keep template clean
Prevents app source code, Xcode projects, and asset catalogs from being accidentally committed to this workflow template repo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
9bd267269d
commit
0f175b456b
25
.gitignore
vendored
25
.gitignore
vendored
|
|
@ -1,12 +1,29 @@
|
||||||
|
# Chat history & environment
|
||||||
.chat-history/
|
.chat-history/
|
||||||
.env
|
.env
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Claude Code local settings
|
||||||
|
.claude/settings.json
|
||||||
|
.claude/settings.local.json
|
||||||
|
|
||||||
|
# Xcode — prevent app code from being committed to this template repo
|
||||||
|
*.xcodeproj/
|
||||||
|
*.xcworkspace/
|
||||||
*.xcuserstate
|
*.xcuserstate
|
||||||
xcuserdata/
|
xcuserdata/
|
||||||
.build/
|
.build/
|
||||||
DerivedData/
|
DerivedData/
|
||||||
.claude/settings.json
|
|
||||||
.claude/settings.local.json
|
# Swift/App source — this is a template repo, not an app
|
||||||
*.xcodeproj/xcuserdata/
|
*.swift
|
||||||
*.xcodeproj/project.xcworkspace/xcuserdata/
|
*.xcassets/
|
||||||
|
*.xcstrings
|
||||||
|
*.xcprivacy
|
||||||
|
*.caf
|
||||||
|
project.yml
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue