summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2017-05-24 22:59:37 +0200
committerPatrick Georgi <pgeorgi@google.com>2017-05-25 23:04:29 +0200
commit9ec25f7678f7f3fc1ce35f833d1168e605ad0f94 (patch)
tree7b82204cc3a8be3d658cf61c378c2727d7a1e014 /util
parenta6f0b2754b0eea323db60d95fc59e1f08bc060e4 (diff)
downloadcoreboot-9ec25f7678f7f3fc1ce35f833d1168e605ad0f94.tar.gz
coreboot-9ec25f7678f7f3fc1ce35f833d1168e605ad0f94.tar.bz2
coreboot-9ec25f7678f7f3fc1ce35f833d1168e605ad0f94.zip
util/lint: ignore some more binary file types
Namely png (images) and eot, ttf, woff (fonts) Change-Id: I41e773c0adab796876a3b1e91e089ae89cbb04df Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: https://review.coreboot.org/19880 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'util')
-rwxr-xr-xutil/lint/lint-stable-003-whitespace2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace
index 3dbd4730f542..9352117c4b28 100755
--- a/util/lint/lint-stable-003-whitespace
+++ b/util/lint/lint-stable-003-whitespace
@@ -15,5 +15,5 @@
# DESCR: Check for superfluous whitespace in the tree
LC_ALL=C export LC_ALL
-grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$)"` | \
+grep -l "[[:space:]][[:space:]]*$" `git ls-files src util |egrep -v "(^3rdparty|^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$|\.ttf$|\.woff$|\.png$|\.eot$)"` | \
sed -e "s,^.*$,File & has lines ending with whitespace.,"