aboutsummaryrefslogtreecommitdiff
path: root/guix/lint.scm
diff options
context:
space:
mode:
authorSergey Trofimov <sarg@sarg.org.ru>2023-03-21 09:16:40 +0100
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-03-21 14:06:47 -0400
commit4f63b4b86de47b094ccf42ed68f9f3aa960285bd (patch)
treecde9cfae2dac3fd30707e4bb3a581ada9bd24ed1 /guix/lint.scm
parentd44970748f6f8dc889e75fd78851bce7c6730d8b (diff)
downloadguix-4f63b4b86de47b094ccf42ed68f9f3aa960285bd.tar
guix-4f63b4b86de47b094ccf42ed68f9f3aa960285bd.tar.gz
guix: Run check-synopsis-style with other local checks.
* guix/lint.scm (%network-dependent-checkers): Move check-synopsis-style to... (%local-checkers): ... here. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'guix/lint.scm')
-rw-r--r--guix/lint.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index a1a27873d9..3ed7fd6e4d 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1863,6 +1863,10 @@ them for PACKAGE."
(description "Validate package descriptions")
(check check-description-style))
(lint-checker
+ (name 'synopsis)
+ (description "Validate package synopses")
+ (check check-synopsis-style))
+ (lint-checker
(name 'inputs-should-be-native)
(description "Identify inputs that should be native inputs")
(check check-inputs-should-be-native))
@@ -1926,10 +1930,7 @@ or a list thereof")
(define %network-dependent-checkers
(list
- (lint-checker
- (name 'synopsis)
- (description "Validate package synopses")
- (check check-synopsis-style))
+
(lint-checker
(name 'gnu-description)
(description "Validate synopsis & description of GNU packages")