Last active
October 17, 2024 13:55
-
-
Save candostdagdeviren/9716e514355ab0fee4858c3d467269aa to your computer and use it in GitHub Desktop.
Git Pre-Commit hook with SwiftLInt
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 | |
#Path to swiftlint | |
SWIFT_LINT=/usr/local/bin/swiftlint | |
#if $SWIFT_LINT >/dev/null 2>&1; then | |
if [[ -e "${SWIFT_LINT}" ]]; then | |
count=0 | |
for file_path in $(git ls-files -m --exclude-from=.gitignore | grep ".swift$"); do | |
export SCRIPT_INPUT_FILE_$count=$file_path | |
count=$((count + 1)) | |
done | |
##### Check for modified files in unstaged/Staged area ##### | |
for file_path in $(git diff --name-only --cached | grep ".swift$"); do | |
export SCRIPT_INPUT_FILE_$count=$file_path | |
count=$((count + 1)) | |
done | |
##### Make the count avilable as global variable ##### | |
export SCRIPT_INPUT_FILE_COUNT=$count | |
echo "${SCRIPT_INPUT_FILE_COUNT}" | |
##### Lint files or exit if no files found for lintint ##### | |
if [ "$count" -ne 0 ]; then | |
echo "Found lintable files! Linting and fixing the fixible parts..." | |
$SWIFT_LINT autocorrect --use-script-input-files --config .swiftlint.yml #autocorrects before commit. | |
else | |
echo "No files to lint!" | |
exit 0 | |
fi | |
RESULT=$? | |
if [ $RESULT -eq 0 ]; then | |
echo "" | |
echo "Violation found of the type WARNING! Must fix before commit!" | |
else | |
echo "" | |
echo "Violation found of the type ERROR! Must fix before commit!" | |
fi | |
exit $RESULT | |
else | |
#### If SwiftLint is not installed, do not allow commit | |
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" | |
echo "If you have Homebrew, you can directly use `brew install swiftlint` to install SwiftLint" | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great post on Medium! I have a question, is there a way to remove the header comments generated by XCode?