clippy_dev: Sort lint and lint pass declarations (parsing revamp part 5/N) - #15979
Merged
Conversation
Collaborator
|
Some changes occurred in clippy_lints/src/doc cc @notriddle |
Collaborator
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Jarcho
force-pushed
the
dev_parse5
branch
2 times, most recently
from
February 26, 2026 19:56
e0e2f24 to
45471b4
Compare
This comment has been minimized.
This comment has been minimized.
Collaborator
|
This PR was rebased onto a different master commit. Here's a range-diff highlighting what actually changed. Rebasing is a normal part of keeping PRs up to date, so no action is needed—this note is just to help reviewers. |
Member
|
Nice one, tested and approved. I'll attempt to merge it, but locally the merge fails because of 7ac8be4 which happens on r? samueltardieu |
This was referenced Mar 5, 2026
pull Bot
pushed a commit
to xtqqczze/rust-lang-rust-clippy
that referenced
this pull request
Jun 28, 2026
Based on rust-lang#15979 This part keeps all the parsed source files in memory. These are then borrowed from to avoid allocations and reused when generating which avoids reloading the files. The next PR will also use this when reporting errors. changelog: none
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Based on #15978
This will prevent some pointless merge conflict when multiple people add lints to the same lint pass (e.g. methods).
changelog: None