From 0f175b456b5cc07741f854cfbc30aee93330fba1 Mon Sep 17 00:00:00 2001 From: idev2025 Date: Tue, 14 Apr 2026 08:31:00 -0400 Subject: [PATCH] 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) --- .gitignore | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1b2a48a..60f0854 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,29 @@ +# Chat history & environment .chat-history/ .env + +# Dependencies node_modules/ + +# macOS .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 xcuserdata/ .build/ DerivedData/ -.claude/settings.json -.claude/settings.local.json -*.xcodeproj/xcuserdata/ -*.xcodeproj/project.xcworkspace/xcuserdata/ + +# Swift/App source — this is a template repo, not an app +*.swift +*.xcassets/ +*.xcstrings +*.xcprivacy +*.caf +project.yml