spyglass-plugin-xls/tools/gate/whitespace-linter.sh
Ian H. Pittwood 6174c80f5d Initial commit
Adds code for tugboat plugin from Airship Spyglass.
2019-04-26 16:01:24 -05:00

10 lines
93 B
Bash
Executable File

#!/usr/bin/env bash
set -x
RES=$(git grep -E -l " +$")
if [[ -n $RES ]]; then
exit 1
fi