You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cli/mod.rs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,12 @@ pub(crate) struct Arguments {
41
41
)]
42
42
pub(crate)current_version:Option<Version>,
43
43
44
+
#[arg(
45
+
long,
46
+
help = "Enable verbose output, respects RUST_LOG environment variable if set."
47
+
)]
48
+
pub(crate)verbose:bool,
49
+
44
50
#[arg(
45
51
help = "The Git reference from where to start taking the range of commits from till HEAD to lint. The range is inclusive of HEAD and exclusive of the provided reference. '-' indicates to read the standard input and lint the input as a Git commit message."
0 commit comments