Skip to content

Commit

Permalink
add reason for clippy enum
Browse files Browse the repository at this point in the history
  • Loading branch information
quasystaty1 committed Nov 4, 2024
1 parent bbda04c commit a3cec30
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/astria-cli/src/sequencer/sudo/fee_change.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ impl Command {
}
}

#[expect(clippy::enum_variant_names)]
#[expect(
clippy::enum_variant_names,
reason = "Enum variant names intentionally include 'Fee' for clarity and consistency"
)]
#[derive(Debug, Subcommand)]
enum SubCommand {
/// Change Transfer Fee
Expand Down

0 comments on commit a3cec30

Please sign in to comment.