]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_dev/src/main.rs
Rollup merge of #82484 - bugadani:docfix, r=jyn514
[rust.git] / src / tools / clippy / clippy_dev / src / main.rs
1 #![cfg_attr(feature = "deny-warnings", deny(warnings))]
2
3 use clap::{App, Arg, ArgMatches, SubCommand};
4 use clippy_dev::{bless, fmt, new_lint, ra_setup, serve, stderr_length_check, update_lints};
5
6 #[cfg(feature = "lintcheck")]
7 use clippy_dev::lintcheck;
8
9 fn main() {
10     let matches = get_clap_config();
11
12     match matches.subcommand() {
13         ("bless", Some(matches)) => {
14             bless::bless(matches.is_present("ignore-timestamp"));
15         },
16         #[cfg(feature = "lintcheck")]
17         ("lintcheck", Some(matches)) => {
18             lintcheck::run(&matches);
19         },
20         ("fmt", Some(matches)) => {
21             fmt::run(matches.is_present("check"), matches.is_present("verbose"));
22         },
23         ("update_lints", Some(matches)) => {
24             if matches.is_present("print-only") {
25                 update_lints::print_lints();
26             } else if matches.is_present("check") {
27                 update_lints::run(update_lints::UpdateMode::Check);
28             } else {
29                 update_lints::run(update_lints::UpdateMode::Change);
30             }
31         },
32         ("new_lint", Some(matches)) => {
33             match new_lint::create(
34                 matches.value_of("pass"),
35                 matches.value_of("name"),
36                 matches.value_of("category"),
37             ) {
38                 Ok(_) => update_lints::run(update_lints::UpdateMode::Change),
39                 Err(e) => eprintln!("Unable to create lint: {}", e),
40             }
41         },
42         ("limit_stderr_length", _) => {
43             stderr_length_check::check();
44         },
45         ("ra_setup", Some(matches)) => ra_setup::run(matches.value_of("rustc-repo-path")),
46         ("serve", Some(matches)) => {
47             let port = matches.value_of("port").unwrap().parse().unwrap();
48             let lint = matches.value_of("lint");
49             serve::run(port, lint);
50         },
51         _ => {},
52     }
53 }
54
55 fn get_clap_config<'a>() -> ArgMatches<'a> {
56     #[cfg(feature = "lintcheck")]
57     let lintcheck_sbcmd = SubCommand::with_name("lintcheck")
58         .about("run clippy on a set of crates and check output")
59         .arg(
60             Arg::with_name("only")
61                 .takes_value(true)
62                 .value_name("CRATE")
63                 .long("only")
64                 .help("only process a single crate of the list"),
65         )
66         .arg(
67             Arg::with_name("crates-toml")
68                 .takes_value(true)
69                 .value_name("CRATES-SOURCES-TOML-PATH")
70                 .long("crates-toml")
71                 .help("set the path for a crates.toml where lintcheck should read the sources from"),
72         )
73         .arg(
74             Arg::with_name("threads")
75                 .takes_value(true)
76                 .value_name("N")
77                 .short("j")
78                 .long("jobs")
79                 .help("number of threads to use, 0 automatic choice"),
80         );
81
82     let app = App::new("Clippy developer tooling")
83         .subcommand(
84             SubCommand::with_name("bless")
85                 .about("bless the test output changes")
86                 .arg(
87                     Arg::with_name("ignore-timestamp")
88                         .long("ignore-timestamp")
89                         .help("Include files updated before clippy was built"),
90                 ),
91         )
92         .subcommand(
93             SubCommand::with_name("fmt")
94                 .about("Run rustfmt on all projects and tests")
95                 .arg(
96                     Arg::with_name("check")
97                         .long("check")
98                         .help("Use the rustfmt --check option"),
99                 )
100                 .arg(
101                     Arg::with_name("verbose")
102                         .short("v")
103                         .long("verbose")
104                         .help("Echo commands run"),
105                 ),
106         )
107         .subcommand(
108             SubCommand::with_name("update_lints")
109                 .about("Updates lint registration and information from the source code")
110                 .long_about(
111                     "Makes sure that:\n \
112                  * the lint count in README.md is correct\n \
113                  * the changelog contains markdown link references at the bottom\n \
114                  * all lint groups include the correct lints\n \
115                  * lint modules in `clippy_lints/*` are visible in `src/lifb.rs` via `pub mod`\n \
116                  * all lints are registered in the lint store",
117                 )
118                 .arg(Arg::with_name("print-only").long("print-only").help(
119                     "Print a table of lints to STDOUT. \
120                  This does not include deprecated and internal lints. \
121                  (Does not modify any files)",
122                 ))
123                 .arg(
124                     Arg::with_name("check")
125                         .long("check")
126                         .help("Checks that `cargo dev update_lints` has been run. Used on CI."),
127                 ),
128         )
129         .subcommand(
130             SubCommand::with_name("new_lint")
131                 .about("Create new lint and run `cargo dev update_lints`")
132                 .arg(
133                     Arg::with_name("pass")
134                         .short("p")
135                         .long("pass")
136                         .help("Specify whether the lint runs during the early or late pass")
137                         .takes_value(true)
138                         .possible_values(&["early", "late"])
139                         .required(true),
140                 )
141                 .arg(
142                     Arg::with_name("name")
143                         .short("n")
144                         .long("name")
145                         .help("Name of the new lint in snake case, ex: fn_too_long")
146                         .takes_value(true)
147                         .required(true),
148                 )
149                 .arg(
150                     Arg::with_name("category")
151                         .short("c")
152                         .long("category")
153                         .help("What category the lint belongs to")
154                         .default_value("nursery")
155                         .possible_values(&[
156                             "style",
157                             "correctness",
158                             "complexity",
159                             "perf",
160                             "pedantic",
161                             "restriction",
162                             "cargo",
163                             "nursery",
164                             "internal",
165                             "internal_warn",
166                         ])
167                         .takes_value(true),
168                 ),
169         )
170         .subcommand(
171             SubCommand::with_name("limit_stderr_length")
172                 .about("Ensures that stderr files do not grow longer than a certain amount of lines."),
173         )
174         .subcommand(
175             SubCommand::with_name("ra_setup")
176                 .about("Alter dependencies so rust-analyzer can find rustc internals")
177                 .arg(
178                     Arg::with_name("rustc-repo-path")
179                         .long("repo-path")
180                         .short("r")
181                         .help("The path to a rustc repo that will be used for setting the dependencies")
182                         .takes_value(true)
183                         .value_name("path")
184                         .required(true),
185                 ),
186         )
187         .subcommand(
188             SubCommand::with_name("serve")
189                 .about("Launch a local 'ALL the Clippy Lints' website in a browser")
190                 .arg(
191                     Arg::with_name("port")
192                         .long("port")
193                         .short("p")
194                         .help("Local port for the http server")
195                         .default_value("8000")
196                         .validator_os(serve::validate_port),
197                 )
198                 .arg(Arg::with_name("lint").help("Which lint's page to load initially (optional)")),
199         );
200
201     #[cfg(feature = "lintcheck")]
202     let app = app.subcommand(lintcheck_sbcmd);
203
204     app.get_matches()
205 }