1 2 3 4 5 6 7 8 9 10 11
//! Lint command arguments use clap::Args; /// Run linting and code quality checks #[derive(Args, Debug)] pub struct LintArgs { /// Fix issues automatically if possible #[arg(short, long)] pub fix: bool, }