-
Notifications
You must be signed in to change notification settings - Fork 6
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
chore: use stricter linting for builds #358
chore: use stricter linting for builds #358
Conversation
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.
Looking good.
Left a few (nitty) comments.
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. ℹ️ You can also turn on project coverage checks and project coverage reporting on Pull Request comment Thanks for integrating Codecov - We've got you covered ☂️ |
#![allow(clippy::cast_possible_truncation)] | ||
#![allow(clippy::cast_possible_wrap)] | ||
#![allow(clippy::cast_precision_loss)] | ||
#![allow(clippy::missing_docs_in_private_items)] | ||
#![allow(clippy::doc_markdown)] | ||
#![allow(clippy::module_name_repetitions)] | ||
#![allow(clippy::cast_sign_loss)] |
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.
These will require quite significant changes, the most substantive being related to
#![allow(clippy::cast_sign_loss)]
#![allow(clippy::cast_possible_truncation)]
#![allow(clippy::cast_possible_wrap)]
#![allow(clippy::cast_precision_loss)]
I've outlined the issue more in #374
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.
LGTM
Closes #359
I've also introduced a
.codecov
file