Skip to content

Instantly share code, notes, and snippets.

@guillaumealgis
Last active June 19, 2019 09:38
Show Gist options
  • Save guillaumealgis/2866f44988efa2f628da764e1f254634 to your computer and use it in GitHub Desktop.
Save guillaumealgis/2866f44988efa2f628da764e1f254634 to your computer and use it in GitHub Desktop.
swiftformat pre-commit hook
#!/bin/bash
set -uo pipefail
status=0
tmp=$(mktemp)
script=$0
while read -r file; do
swiftformat --config .swiftformat --lint "${file}" > /dev/null 2>&1
file_status=$?
if [[ ${file_status} -eq 1 ]]; then
echo "${script}: swiftformat error: ${file}" >&2
swiftformat --config .swiftformat "${file}" --output "${tmp}" > /dev/null 2>&1
diff "${file}" "${tmp}"
status=1
echo
elif [[ ${file_status} -gt 1 ]]; then
# Run the command again to display the error
swiftformat --config .swiftformat --lint "${file}" >&2
exit ${file_status}
fi
done < <(git diff --diff-filter=d --staged --name-only | grep '.swift$')
rm -f "${tmp}"
exit ${status}
@guillaumealgis
Copy link
Author

Check only for changed files, and print the expected format when linting fails.

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