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
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -77,7 +77,7 @@
 | 
				
			||||||
  (exit 0))
 | 
					  (exit 0))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (properly-starts-sentence? s)
 | 
					(define (properly-starts-sentence? s)
 | 
				
			||||||
  (string-match "^[[:upper:][:digit:]]" s))
 | 
					  (string-match "^[(\"'[:upper:][:digit:]]" s))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define (check-description-style package)
 | 
					(define (check-description-style package)
 | 
				
			||||||
  ;; Emit a warning if stylistic issues are found in the description of PACKAGE.
 | 
					  ;; Emit a warning if stylistic issues are found in the description of PACKAGE.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue