util/lint: update whitespace checking rules

- Check payloads, the root Makefiles and toolchain.inc
- 3rdparty is already not checked, so remove
- The marks around COPYING, LICENSE, and README were not needed
- Skip checking .ico files

Change-Id: Ic4a1709224604b36362d82e249c2916fca0336a2
Signed-off-by: Martin Roth <martinr@coreboot.org>
Reviewed-on: https://review.coreboot.org/28431
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
Martin Roth 2018-09-01 17:13:38 -06:00 committed by Patrick Georgi
parent 87282737a8
commit ee0f225e3a
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@
# DESCR: Check for superfluous whitespace in the tree # DESCR: Check for superfluous whitespace in the tree
LC_ALL=C export LC_ALL LC_ALL=C export LC_ALL
EXCLUDELIST='^3rdparty|^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|\<COPYING\>|\<LICENSE\>|\<README\>|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$|\.ttf$|\.woff$|\.png$|\.eot$|\.vbt$' EXCLUDELIST='^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|COPYING|LICENSE|README|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$|\.ttf$|\.woff$|\.png$|\.eot$|\.vbt$|\.ico$'
INCLUDELIST="src util" INCLUDELIST="src util payloads Makefile* toolchain.inc"
# shellcheck disable=SC2086,SC2046 # shellcheck disable=SC2086,SC2046
if uname | grep -qi "linux"; then if uname | grep -qi "linux"; then