-
Notifications
You must be signed in to change notification settings - Fork 22
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
Clippy check step for PRs #46
Comments
Might also be nice to expand the clippy check to make automatic PR suggestions 🙀 |
I think maybe this has already been done. Is that right @shnewto ? |
ah yeah totally! tho it'd still be cool to have clippy give autofeedback on PRs, maybe that could be a help wanted new issue 😄 |
isn't it already giving autofeedback on PRs? I could swear I got some clippy comments on the Earley parser PR 🤔 |
maybe! tho there's no reference to clippy in the github actions... |
oh right! that was coverage comments. ignore me 🙊 okay so this issue still open and valid |
Clippy has a lot of best practices, but BNF is in violation of a lot of them. Some would be breaking changes (like removing the non
std::str::FromStr
from_str
public functions). Other changes require updating the parsers to nom 5 best practices.Once that is done, would just need to revert previous attempt to re-enable clippy CI.
The text was updated successfully, but these errors were encountered: