1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
use std::ops::{Deref, DerefMut};
use std::path::PathBuf;
use std::process::Command;
use clap::Parser;
use crate::check::CheckOptions;
use crate::common::CommonOptions;
#[derive(Clone, Debug, Default, Parser)]
#[command(
display_order = 1,
after_help = "Run `cargo help clippy` for more detailed information."
)]
#[group(skip)]
pub struct Clippy {
#[command(flatten)]
pub common: CommonOptions,
#[command(flatten)]
pub check: CheckOptions,
#[arg(long, value_name = "PATH")]
pub manifest_path: Option<PathBuf>,
#[arg(short = 'r', long)]
pub release: bool,
#[arg(long)]
pub ignore_rust_version: bool,
#[arg(long)]
pub unit_graph: bool,
#[arg(long)]
pub no_deps: bool,
#[arg(long)]
pub fix: bool,
#[arg(value_name = "args", trailing_var_arg = true, num_args = 0..)]
pub args: Vec<String>,
}
impl Clippy {
pub fn command(&self) -> Command {
let mut cmd = CommonOptions::cargo_command();
cmd.arg("clippy");
self.common.apply(&mut cmd);
self.check.apply(&mut cmd);
if let Some(path) = self.manifest_path.as_ref() {
cmd.arg("--manifest-path").arg(path);
}
if self.release {
cmd.arg("--release");
}
if self.ignore_rust_version {
cmd.arg("--ignore-rust-version");
}
if self.unit_graph {
cmd.arg("--unit-graph");
}
if self.no_deps {
cmd.arg("--no-deps");
}
if self.fix {
cmd.arg("--fix");
}
if !self.args.is_empty() {
cmd.arg("--");
cmd.args(&self.args);
}
cmd
}
}
impl Deref for Clippy {
type Target = CommonOptions;
fn deref(&self) -> &Self::Target {
&self.common
}
}
impl DerefMut for Clippy {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.common
}
}
#[cfg(test)]
mod test {
use super::Clippy;
use clap::CommandFactory;
#[test]
fn verify_cli() {
<Clippy as CommandFactory>::command().debug_assert()
}
}