mirror of
https://github.com/awizemann/scarf.git
synced 2026-05-10 18:44:45 +00:00
d2a447fcc4
Public docs now live at https://github.com/awizemann/scarf/wiki (separate git repo cloned to .wiki-worktree/, mirroring the .gh-pages-worktree/ pattern). Internal dev notes stay in scarf/docs/. scripts/wiki.sh wraps pull/commit/push with a two-pass secret-scan: hard patterns (token regexes + private-key headers + a user-maintained scripts/wiki-blocklist.txt) abort with non-zero exit; soft assignment patterns (api_key=…, password=…, token=…) warn and require --force-terms. CLAUDE.md gains a Wiki section listing the update triggers (new feature, new service, architecture change, Hermes version bump, full release, keyboard/sidebar change) and the workflow. CONTRIBUTING.md points external contributors at the wiki Edit button or a direct clone. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
59 lines
916 B
Plaintext
59 lines
916 B
Plaintext
# Xcode
|
|
build/
|
|
.gh-pages-worktree/
|
|
.wiki-worktree/
|
|
DerivedData/
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata/
|
|
*.xccheckout
|
|
*.moved-aside
|
|
*.hmap
|
|
*.ipa
|
|
*.dSYM.zip
|
|
*.dSYM
|
|
|
|
# Swift Package Manager
|
|
.build/
|
|
Packages/
|
|
Package.pins
|
|
Package.resolved
|
|
*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/
|
|
.swiftpm/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
|
|
# IDE
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
scarf/standards/backups/
|
|
|
|
# Scarf project dashboards (user-specific)
|
|
.scarf/
|
|
|
|
# Release artifacts — GitHub Releases hosts the binaries; no need to bloat git
|
|
# history. RELEASE_NOTES.md stays tracked (committed with the version bump).
|
|
releases/v*/*.zip
|
|
releases/v*/appcast-entry.xml
|
|
|
|
# Wiki helper: personal patterns (hostnames, IPs) blocked from the wiki push.
|
|
scripts/wiki-blocklist.txt
|