You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
)]
35
35
#![allow(
36
36
clippy::module_name_repetitions,// Some structs have similar names with the module and this is intentional.
37
-
clippy::struct_field_names,// Necessary due to different Rust versions between dev environment and CI/CD pipeline.
37
+
clippy::struct_field_names,// Some structs have fields with the same name as the struct, but this is intentional.
38
38
rustdoc::private_intra_doc_links,// Some links are private, but they are necessary for the documentation and solved by the "--document-private-items" flag.
0 commit comments