File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,17 @@ fn main() {
19
19
let matches = App :: new ( "Clippy developer tooling" )
20
20
. subcommand (
21
21
SubCommand :: with_name ( "update_lints" )
22
- . about ( "Update the lint list" )
22
+ . about ( "Makes sure that:\n \
23
+ * the lint count in README.md is correct\n \
24
+ * the changelog contains markdown link references at the bottom\n \
25
+ * all lints groups include the correct lints\n \
26
+ * lint modules in `clippy_lints/*` are visible in `src/lib.rs` via `pub mod`\n \
27
+ * all lints are registered in the lint store")
23
28
. arg (
24
29
Arg :: with_name ( "print-only" )
25
30
. long ( "print-only" )
26
31
. short ( "p" )
27
- . help ( "Print a table of lints to STDOUT. Does not modify any files. " ) ,
32
+ . help ( "Print a table of lints to STDOUT. This does not include deprecated and internal lints. ( Does not modify any files) " ) ,
28
33
)
29
34
)
30
35
. get_matches ( ) ;
You can’t perform that action at this time.
0 commit comments