From 9666c3e1c01fb60af88046ad2f0b086b78912ae2 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Fri, 26 May 2023 16:16:23 -0400 Subject: sbolint: get rid of "trailing whitespace on description line" error (life is too short to worry about it). --- sbolint | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sbolint') diff --git a/sbolint b/sbolint index fe0f3d9..4711a30 100755 --- a/sbolint +++ b/sbolint @@ -813,9 +813,10 @@ sub check_slackdesc { } elsif(length($text) && $text !~ /^ /) { log_error("slack-desc:$lineno: missing whitespace after colon, on non-blank line"); } else { - if($text =~ /\s$/) { - log_error("slack-desc:$lineno: trailing whitespace on description line"); - } + # The world is not ready for this: + ###if($text =~ /\s$/) { + ### log_error("slack-desc:$lineno: trailing whitespace on description line"); + ###} if(length($text) > 71) { log_error("slack-desc:$lineno: text too long, %d characters, should be <= 71", length($text)); } -- cgit v1.2.3