Skip to content

Commit

Permalink
fix: disable clippy::nursery in schema module
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed May 14, 2024
1 parent d09760e commit b7f0166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cynic-codegen/src/schema_module_attr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub fn attribute_impl(

// Silence a bunch of warnings inside this module
module.attrs.push(parse_quote! {
#[allow(clippy::all, clippy::pedantic, non_snake_case, non_camel_case_types, dead_code)]
#[allow(clippy::all, clippy::pedantic, clippy::nursery, non_snake_case, non_camel_case_types, dead_code)]
});

let include: Item = parse_quote! {
Expand Down

0 comments on commit b7f0166

Please sign in to comment.