rust-lang / rust-lang/rust-bindgen
OCD: clippy issues
Open
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 5.3k
- Forks
- 829
- Avg merge
- 1d 1h
- Merged PRs (30d)
- 15
Description
Here's the statistics of the Clippy issues to see which may need to be fixed. I excluded bindgen-integration and tests_expectations as they seem to have some other issues.
echo '|count|lint|' && echo '|---|---|' && \
cargo clippy --all-targets --workspace --exclude bindgen-integration --exclude tests_expectations --message-format=json --quiet -- -W clippy::pedantic \
| jq -r '.message.code.code | select(. != null and startswith("clippy::")) | "| [" + . + "](https://rust-lang.github.io/rust-clippy/master/index.html#" + .[8:] + ") |"' \
| sort | uniq -c | sort -h -r | sed 's/^/|/'
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the cargo clippy command in the issue, keeping the listed exclusions, and review the linked Clippy lint documentation. The issue identifies existing work in #3026 and #3019–#3023; done would require resolving an agreed subset of the remaining reported lints without changing the excluded targets.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- tooling
- Issue type
- Refactor
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100