-
Notifications
You must be signed in to change notification settings - Fork 25
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
Fix clippy lints, or are they being ignored on purpose? #338
Comments
Hmm... I'm trying to keep it clean from clippy complains and formatting. Any ideas why CI isn't catching them? As far as fixing them - |
The CI actually is outputting all the warnings. The issue is that only the bpaf/.github/workflows/check-and-lint.yaml Lines 41 to 65 in b7c0b16
In short, the following change is needed for the clippy check(s), to catch warnings: - cargo clippy --workspace --all-targets
+ cargo clippy --workspace --all-targets -- -D warnings Adding Check out the workflow we're using for Askama. |
There are some clippy warnings throughout the project.
Should these be fixed, or are they meant to be ignored on purpose?
(I can submit a PR with fixes, if they are meant to be fixed.)
The text was updated successfully, but these errors were encountered: