alamb opened a new issue #1254: URL: https://github.com/apache/arrow-rs/issues/1254
**Describe the bug** Due to "historical reasons" there are several clippy lints that are disabled in the parquet crate https://github.com/apache/arrow-rs/blob/master/parquet/src/lib.rs#L18-L36 ```rust #![allow(incomplete_features)] #![allow(dead_code)] #![allow(non_camel_case_types)] #![allow( clippy::approx_constant, clippy::cast_ptr_alignment, clippy::float_cmp, clippy::float_equality_without_abs, clippy::from_over_into, clippy::many_single_char_names, clippy::needless_range_loop, clippy::new_without_default, clippy::or_fun_call, clippy::same_item_push, clippy::too_many_arguments, clippy::transmute_ptr_to_ptr, clippy::upper_case_acronyms, clippy::vec_init_then_push )] ``` It would be great to clean up the code to pass these lints for tidiness **To Reproduce** Remove one of the `#[allow]` lines above, run `clippy` **Expected behavior** Clippy runs cleanly without blank `#allow` across the whole crate **Additional context** Add any other context about the problem here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org