Skip to main content

tldr_cli/commands/bugbot/
mod.rs

1//! Bugbot command group - automated bug detection on code changes
2//!
3//! Subcommands:
4//! - `check`: Analyze uncommitted/staged changes for potential bugs
5
6pub mod baseline;
7pub mod changes;
8mod check;
9pub mod dead;
10pub mod diff;
11pub mod first_run;
12pub mod l2;
13pub mod parsers;
14pub mod runner;
15pub mod signature;
16pub mod text_format;
17pub mod tools;
18mod types;
19
20pub use check::BugbotCheckArgs;
21pub use types::*;