Skip to content

Commit ad8e127

Browse files
committed
feat: add no_split and no_scope flags to cli
These flags allow users to disable commit split suggestions and scope in commit messages, respectively, providing more control over commit message generation.
1 parent c6fda79 commit ad8e127

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/cli.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ pub struct Cli {
3737
#[arg(long)]
3838
pub show_prompt: bool,
3939

40+
/// Disable commit split suggestions
41+
#[arg(long)]
42+
pub no_split: bool,
43+
44+
/// Disable scope in commit messages
45+
#[arg(long)]
46+
pub no_scope: bool,
47+
4048
/// Verbose output
4149
#[arg(short, long)]
4250
pub verbose: bool,

0 commit comments

Comments
 (0)