@@ -19,7 +19,6 @@ pub enum AccessLevel {
1919}
2020
2121impl 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" ) ]
9796impl 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" ) ]
189184impl 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