Output failing lines when dib-lint finds wrong indents

When dib-lint complains about wrong indents, it doesn't give you any
indication where the problem is.  This repeats the grep on failure,
outputting the line and line-number.

As a bonus, skip *.orig files from merges

Change-Id: Ifbbdf854ea19191f66e9823468dbc0afc2f93e1f
This commit is contained in:
Ian Wienand 2015-09-24 20:51:07 +10:00
parent bbea877f2c
commit e678910166
1 changed files with 5 additions and 1 deletions

View File

@ -63,6 +63,7 @@ TMPDIR=$(mktemp -d /tmp/tmp.XXXXXXXXXX)
trap "rm -rf $TMPDIR" EXIT
for i in $(find elements -type f \
-not -name \*~ \
-not -name \*.orig \
-not -name \*.rst \
-not -name \*.yaml \
-not -name \*.py \
@ -81,8 +82,11 @@ for i in $(find elements -type f \
flake8 $i
else
if ! excluded indent ; then
if grep -q "^\( \{4\}\)* \{1,3\}[^ ]" ${i}; then
indent_regex='^\( \{4\}\)* \{1,3\}[^ ]'
if grep -q "$indent_regex" ${i}; then
error "$i should use 4 spaces indent"
# outline the failing lines with line number
grep -n "$indent_regex" ${i}
fi
fi
fi