aboutsummaryrefslogtreecommitdiff
path: root/.presubmit/trailing-whitespace
blob: 3a7993908311350343db52f09e57dc67352e7c0e (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

echo "** presubmit/$(basename $0)"

if grep -r '[[:blank:]]$' "$@"; then
    echo "** presubmit/$(basename $0): please remove any trailing white space"
fi