Skip to content

Commit

Permalink
fix(lint): add reason for allow attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Sep 6, 2024
1 parent 4cc3fff commit a5ea036
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ use crate::cache::Cacheable;
use crate::languagetool::categories::Categories;
use crate::utils::{check_and_annotate, fetch_docs};

#[allow(clippy::struct_excessive_bools)]
#[allow(
clippy::struct_excessive_bools,
reason = "This is a CLI configuration struct."
)]
#[derive(Parser)]
pub struct Config {
#[clap(
Expand Down

0 comments on commit a5ea036

Please sign in to comment.