lint: Tolerate sentences that start with a parenthesis or a quote.

* guix/scripts/lint.scm (properly-starts-sentence?): Add (, ", and ' as
  valid beginnings.
This commit is contained in:
Ludovic Courtès 2014-11-07 17:32:56 +01:00
parent 17854ef91d
commit 431e5f5a3e

View file

@ -77,7 +77,7 @@ (define (list-checkers-and-exit)
(exit 0))
(define (properly-starts-sentence? s)
(string-match "^[[:upper:][:digit:]]" s))
(string-match "^[(\"'[:upper:][:digit:]]" s))
(define (check-description-style package)
;; Emit a warning if stylistic issues are found in the description of PACKAGE.