- Add parser output directories to .gitignore - Update PROJECT_STATE.md with completed tasks and new checkpoint - Clean up TO-DOS.md (remove completed items) - Delete obsolete sample screenshots Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
104 lines
1.2 KiB
Plaintext
104 lines
1.2 KiB
Plaintext
# Xcode
|
|
build/
|
|
DerivedData/
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata/
|
|
*.xccheckout
|
|
*.moved-aside
|
|
*.xcuserstate
|
|
*.xcscmblueprint
|
|
*.xcworkspace
|
|
!default.xcworkspace
|
|
|
|
# Swift Package Manager
|
|
.build/
|
|
.swiftpm/
|
|
Packages/
|
|
Package.resolved
|
|
|
|
# CocoaPods
|
|
Pods/
|
|
Podfile.lock
|
|
|
|
# Carthage
|
|
Carthage/Build/
|
|
|
|
# Fastlane
|
|
fastlane/report.xml
|
|
fastlane/Preview.html
|
|
fastlane/screenshots/**/*.png
|
|
fastlane/test_output
|
|
|
|
# Code Injection
|
|
iOSInjectionProject/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
|
|
# Thumbnails
|
|
._*
|
|
|
|
# Files that might appear in the root of a volume
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# Directories potentially created on remote AFP share
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Python (for Scripts/)
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.venv/
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.env
|
|
.env.local
|
|
|
|
# Sports Parser
|
|
Scripts/.parser_state/
|
|
Scripts/output/
|
|
Scripts/logs/
|
|
|
|
# IDEs
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.vscode/
|
|
|
|
# Archives
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# Sensitive files
|
|
*.pem
|
|
*.p12
|
|
*.key
|
|
credentials.json
|
|
secrets.json
|