diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2017-05-24 22:59:37 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2017-05-25 23:04:29 +0200 |
commit | 9ec25f7678f7f3fc1ce35f833d1168e605ad0f94 (patch) | |
tree | 7b82204cc3a8be3d658cf61c378c2727d7a1e014 /util/lint | |
parent | a6f0b2754b0eea323db60d95fc59e1f08bc060e4 (diff) | |
download | coreboot-9ec25f7678f7f3fc1ce35f833d1168e605ad0f94.tar.xz |
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/lint')
-rwxr-xr-x | util/lint/lint-stable-003-whitespace | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace index 3dbd4730f5..9352117c4b 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.," |