SwiftLint Auto-Fix Workflow
Automatically fix code style issues:
- Run SwiftFormat:
make format
- Run SwiftLint with autocorrect:
swiftlint --fix --quiet
- Check remaining issues:
swiftlint | grep -E "(error:|warning:)" | head -20
- Report:
- Files formatted count
- Issues auto-fixed count
- Remaining manual issues
- File paths needing manual attention
Return concise summary of what was fixed.