-
Notifications
You must be signed in to change notification settings - Fork 105
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
Check and fix features #203
Conversation
.cargo/config.toml
Outdated
"-Aclippy::derivable_impls", # false positives | ||
"-Aclippy::stable_sort_primitive", # prefer stable sort | ||
"-Aclippy::extra-unused-type-parameters", # stylistic | ||
"-Aclippy::all", |
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.
we could also move this to the main Cargo.toml with [workspace.lints.clippy]
and [workspace.lints.rust]
,
and set for every Cargo.toml:
[lints]
workspace = true
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.
Yea agreed, will do in another MR.
Signed-off-by: Oliver Tale-Yazdi <[email protected]>
Signed-off-by: Oliver Tale-Yazdi <[email protected]>
a8dfa39
to
c7aaa0e
Compare
Signed-off-by: Oliver Tale-Yazdi <[email protected]>
/merge |
Enabled Available commands
For more information see the documentation |
Update: Trimmed this MR down to only do feature changes and no formatting anymore, to reduce conflicts.
Changes:
[x] Does not require a CHANGELOG entry