21 lines
509 B
Markdown
21 lines
509 B
Markdown
|
|
---
|
||
|
|
paths:
|
||
|
|
- "**/*.swift"
|
||
|
|
- "**/Package.swift"
|
||
|
|
---
|
||
|
|
# Swift Hooks
|
||
|
|
|
||
|
|
> This file extends [common/hooks.md](../common/hooks.md) with Swift specific content.
|
||
|
|
|
||
|
|
## PostToolUse Hooks
|
||
|
|
|
||
|
|
Configure in `~/.claude/settings.json`:
|
||
|
|
|
||
|
|
- **SwiftFormat**: Auto-format `.swift` files after edit
|
||
|
|
- **SwiftLint**: Run lint checks after editing `.swift` files
|
||
|
|
- **swift build**: Type-check modified packages after edit
|
||
|
|
|
||
|
|
## Warning
|
||
|
|
|
||
|
|
Flag `print()` statements — use `os.Logger` or structured logging instead for production code.
|