diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-05-20 16:17:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-07-11 00:49:14 +0200 |
commit | b7f1b4c1d072c6da92e20ddadb24e54da0ddd142 (patch) | |
tree | 13d212f653f8068f7f8c69cf5fe510bfd6ab9d1b /doc | |
parent | 8524349f78c37439698f29d43049c2b21df6370f (diff) | |
download | guix-b7f1b4c1d072c6da92e20ddadb24e54da0ddd142.tar guix-b7f1b4c1d072c6da92e20ddadb24e54da0ddd142.tar.gz |
lint: Add 'input-labels' checker.
* guix/lint.scm (check-input-labels): New procedure.
(%local-checkers): Add 'input-labels' checker.
* tests/lint.scm ("input labels: no warnings")
("input labels: one warning"): New tests.
* doc/guix.texi (Invoking guix lint): Mention it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index da00d1e429..32bfd29dbe 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -12158,6 +12158,12 @@ declare them as in this example: @item formatting Warn about obvious source code formatting issues: trailing white space, use of tabulations, etc. + +@item input-labels +Report old-style input labels that do not match the name of the +corresponding package. This aims to help migrate from the ``old input +style''. @xref{package Reference}, for more information on package +inputs and input styles. @end table The general syntax is: |