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:
parent
17854ef91d
commit
431e5f5a3e
|
@ -77,7 +77,7 @@
|
|||
(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.
|
||||
|
|
Loading…
Reference in New Issue