-
Notifications
You must be signed in to change notification settings - Fork 838
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable more clippy lints in arrow #1315
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1315 +/- ##
=======================================
Coverage 83.01% 83.02%
=======================================
Files 180 180
Lines 52810 52810
=======================================
+ Hits 43840 43843 +3
+ Misses 8970 8967 -3
Continue to review full report at Codecov.
|
It's kinda weird that the "Docs are clean" job with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it looks good -- thank you @gsserge
@@ -247,7 +247,7 @@ jobs: | |||
run: | | |||
export CARGO_HOME="/github/home/.cargo" | |||
export CARGO_TARGET_DIR="/github/home/target" | |||
cargo clippy --features test_common --features prettyprint --features=async --all-targets --workspace -- -D warnings -A clippy::redundant_field_names |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
@@ -27,6 +27,7 @@ pub mod writer; | |||
#[allow(clippy::extra_unused_lifetimes)] | |||
#[allow(clippy::redundant_static_lifetimes)] | |||
#[allow(clippy::redundant_field_names)] | |||
#[allow(non_camel_case_types)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Which issue does this PR close?
This is part of #1255
Rationale for this change
It's beneficial to run clippy as strict as possible.
What changes are included in this PR?
This PR enables a few clippy and compiler lints in the
arrow
crate and fixes the related code.Are there any user-facing changes?
No.