# swiftlint-autofix > Run SwiftFormat and fix all auto-correctable SwiftLint issues - Author: Will Sigmon - Repository: willsigmon/wsigstack - Version: 20260204172818 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-07 - Source: https://github.com/willsigmon/wsigstack - Web: https://mule.run/skillshub/@@willsigmon/wsigstack~swiftlint-autofix:20260204172818 --- --- name: swiftlint-autofix description: Run SwiftFormat and fix all auto-correctable SwiftLint issues model: haiku --- # SwiftLint Auto-Fix Workflow Automatically fix code style issues: 1. **Run SwiftFormat:** ```bash make format ``` 2. **Run SwiftLint with autocorrect:** ```bash swiftlint --fix --quiet ``` 3. **Check remaining issues:** ```bash swiftlint | grep -E "(error:|warning:)" | head -20 ``` 4. **Report:** - Files formatted count - Issues auto-fixed count - Remaining manual issues - File paths needing manual attention **Return concise summary of what was fixed.**