pokeruby/whitespace.sh
2017-05-08 16:53:21 -07:00

7 lines
91 B
Bash
Executable File

#!/bin/sh
if grep -Enr "\s+\$" src; then
# Trailing whitespace detected
exit 1
fi