Skip to content

Instantly share code, notes, and snippets.

@brunogama
Forked from candostdagdeviren/pre-commit
Created December 27, 2017 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunogama/31d31f06795ef27d98ad1396bbefba70 to your computer and use it in GitHub Desktop.
Save brunogama/31d31f06795ef27d98ad1396bbefba70 to your computer and use it in GitHub Desktop.
Git Pre-Commit hook with SwiftLInt
#!/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
@brunogama
Copy link
Author

..

@brunogama
Copy link
Author

99

@brunogama
Copy link
Author

Testing

@brunogama
Copy link
Author

yo

@brunogama
Copy link
Author

teste append

@brunogama
Copy link
Author

olá

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment