about summary refs log tree commit diff
path: root/xlint
diff options
context:
space:
mode:
authortriallax <triallax@tutanota.com>2023-08-05 20:55:37 +0100
committerToyam Cox <aviator45003@gmail.com>2023-08-06 17:51:40 -0400
commit19afa591ea54ff21b4b44da032895080721b8a2f (patch)
tree0f0e86e34aecbb4c6113d306b346f196d8a661bc /xlint
parent429db434a76e2931985d347ad60b7e37debbdaee (diff)
downloadxtools-19afa591ea54ff21b4b44da032895080721b8a2f.tar.gz
xtools-19afa591ea54ff21b4b44da032895080721b8a2f.tar.xz
xtools-19afa591ea54ff21b4b44da032895080721b8a2f.zip
xlint: fix short_desc max chars lint warning on 72 chars
https://github.com/void-linux/void-packages/blob/master/Manual.md
states that the description can have a maximum of 72 chars.
Diffstat (limited to 'xlint')
-rwxr-xr-xxlint2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlint b/xlint
index 891e735..997d99d 100755
--- a/xlint
+++ b/xlint
@@ -400,7 +400,7 @@ for argument; do
 	scan 'short_desc=["'\''][a-z]' "short_desc should start uppercase"
 	scan 'short_desc=["'\''](An?|The) ' "short_desc should not start with an article"
 	scan 'short_desc=["'\''][\t ]' "short_desc should not start with whitespace"
-	scan 'short_desc=["'\''].{73}' "short_desc should be less than 72 chars"
+	scan 'short_desc=["'\''].{74}' "short_desc should be at most 72 chars"
 	scan 'license=.*[^NL]GPL[^-]' "license GPL without version"
 	scan 'license=.*SSPL' "Uses the SSPL license, which is not packageable"
 	scan 'license=.*LGPL[^-]' "license LGPL without version"