-
Notifications
You must be signed in to change notification settings - Fork 79
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
Add clippy lints #176
Add clippy lints #176
Conversation
c7b1f07
to
8c3d0eb
Compare
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 love it!
Are we sure this doesn't require updating the MSRV of the crate itself?
#[must_use] | ||
pub fn register_scope( | ||
pub fn register_named_scope( |
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.
This is a breaking change that slipped in – was that intentional?
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.
this function should be hidden from API as it should not be called by users. I will revert it in this PR but follow up with general encapsulation PR
Oh was not suposed to merge automatically. Maybe can disable this mergify bot. Or fine tune it to not merge when comments are still unresolved. I'll followup. Why do you think it requires updating the MSRV of the crate itself? |
Yeah, annoying bot.
It shouldn't - I just now realized the new sections ( |
Description of Changes
Copied all the up-to-date lints we use at embark and put them into the workspace toml such that they apply for every project. Also added lots of documentation to public types because I added a lint for this too.