summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2024-06-26 15:02:27 +0100
committerChristopher Baines <mail@cbaines.net>2024-06-26 15:08:51 +0100
commit56770f7d597e8cc4f735c5885437050c9bd5533f (patch)
treec926ea015ea10786a04d248782acc7da09e03449
parent41891ea973b9cd658a6cc42875f8c65953eb6e12 (diff)
downloadguix-56770f7d597e8cc4f735c5885437050c9bd5533f.tar.gz
Revert "guix: Run check-synopsis-style with other local checks."
The synopsis lint checker is network dependent.

This reverts commit 4f63b4b86de47b094ccf42ed68f9f3aa960285bd.

Signed-off-by: Christopher Baines <mail@cbaines.net>
-rw-r--r--guix/lint.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index 68d532968d..7612832a5a 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1971,10 +1971,6 @@ 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))
@@ -2038,7 +2034,10 @@ 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")