Created
June 1, 2019 16:57
-
-
Save joeblau/a82bd6c353a076adb3698585c5d56d94 to your computer and use it in GitHub Desktop.
Pre commit git hook to run SwiftLint and SwiftFormat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Place this file in `.git/hooks/` | |
if which swiftlint >/dev/null; then | |
swiftlint autocorrect | |
else | |
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" | |
fi | |
git diff --diff-filter=d --staged --name-only | grep -e '\(.*\).swift$' | while read line; do | |
swiftformat "${line}"; | |
git add "$line"; | |
done |
Don't forget to grant execution permission to this newly-added pre-commit
file: chmod +x .git/hooks/pre-commit
Cool, thanks Joe 💪
Thanks!
Thanks a bunch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👋 Thanks Joe!