diff options
author | Eric Bavier <bavier@member.fsf.org> | 2014-10-26 12:36:42 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2014-10-26 13:03:53 -0500 |
commit | 3c42965b1ecd392da7691e5c7e25303ea385bf3d (patch) | |
tree | 9a525f5fb7f97110b4817b9c5e53630248b27766 /guix/scripts | |
parent | 903581f971cd63e3079e849b171bdb8e8118141f (diff) |
guix: lint: Make exception for package name starting description.
* guix/scripts/lint.scm (check-description-style): Exception for
upper-case rule if the description starts with the package name.
* tests/lint.scm: Test it.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/lint.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index 5432069858..7f5915ba2e 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -88,7 +88,8 @@ 'description))) (define (check-proper-start description) - (unless (properly-starts-sentence? description) + (unless (or (properly-starts-sentence? description) + (string-prefix-ci? (package-name package) description)) (emit-warning package "description should start with an upper-case letter or digit" 'description))) |