Skip to content

Commit 19fc437

Browse files
committed
chore: remove unfulfilled lint expectation
1 parent 50ad922 commit 19fc437

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/gitlab/token.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pub enum AccessLevel {
1919
}
2020

2121
impl Display for AccessLevel {
22-
#[expect(clippy::min_ident_chars, reason = "Parameter name from std trait")]
2322
#[expect(clippy::absolute_paths, reason = "Use a specific Result type")]
2423
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
2524
write!(
@@ -95,10 +94,6 @@ pub enum AccessTokenScope {
9594

9695
#[expect(clippy::absolute_paths, reason = "Specific Trait and Result type")]
9796
impl core::fmt::Display for AccessTokenScope {
98-
#[expect(
99-
clippy::min_ident_chars,
100-
reason = "Using the default function parameter name"
101-
)]
10297
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
10398
match *self {
10499
Self::AiFeatures => write!(f, "ai_features"),
@@ -187,10 +182,6 @@ pub enum PersonalAccessTokenScope {
187182

188183
#[expect(clippy::absolute_paths, reason = "Specific Trait and Result type")]
189184
impl core::fmt::Display for PersonalAccessTokenScope {
190-
#[expect(
191-
clippy::min_ident_chars,
192-
reason = "Using the default function parameter name"
193-
)]
194185
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
195186
match *self {
196187
Self::AdminMode => write!(f, "admin_mode"),

0 commit comments

Comments
 (0)