aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMaximilian Brune <maximilian.brune@9elements.com>2022-05-03 13:27:22 +0200
committerMartin L Roth <gaumless@tutanota.com>2022-05-16 19:58:31 +0000
commit94223c41657fa604ff75ce2790504765c8a04713 (patch)
tree21d1e6fb93ee2ed24c487d7bbf30021e54004d4e /util
parent4098ecf5bdbd7400d9cb0e25cab15b046c4b0119 (diff)
Allow trailing whitespaces in .md files
Two trailing whitesspaces have an actual meaning in Markdown files (a new line). Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com> Change-Id: Ibdb92ee857ee4ad32b6afb84ace427b27b41bb7c Reviewed-on: https://review.coreboot.org/c/coreboot/+/64032 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@tutanota.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 6f9d78849a..9a6db004a4 100755
--- a/util/lint/lint-stable-003-whitespace
+++ b/util/lint/lint-stable-003-whitespace
@@ -5,7 +5,7 @@
# DESCR: Check for superfluous whitespace in the tree
LC_ALL=C export LC_ALL
-EXCLUDELIST='^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|COPYING|LICENSE|README|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$|\.gif$|\.ttf$|\.woff$|\.png$|\.eot$|\.vbt$|\.ico$'
+EXCLUDELIST='^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|COPYING|LICENSE|README|_shipped$|\.patch$|\.bin$|\.hex$|\.jpg$|\.gif$|\.ttf$|\.woff$|\.png$|\.eot$|\.vbt$|\.ico$|\.md$'
INCLUDELIST="src util payloads Makefile* toolchain.inc tests"
# shellcheck disable=SC2086,SC2046