-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Split up lints #28429
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
Split up lints #28429
Conversation
|
r? @pcwalton (rust_highfive has picked a reviewer for you, use r? to override) |
32b0426 to
af3ab41
Compare
|
☔ The latest upstream changes (presumably #28399) made this pull request unmergeable. Please resolve the merge conflicts. |
af3ab41 to
8abdbb8
Compare
|
☔ The latest upstream changes (presumably #28349) made this pull request unmergeable. Please resolve the merge conflicts. |
8abdbb8 to
974dfe8
Compare
|
@pcwalton I've rebased this against master and fixed the merge conflicts |
This breaks out some of the lints defined in `librustc_lint/builtin.rs` into two new modules: `unused` for the `UNUSED_*` lints and `bad_style` for the various style related lints as suggested in #22206. `builtin.rs` could probably get broken up more but this is a start.
|
⌛ Testing commit 974dfe8 with merge 2c06bb9... |
This breaks out some of the lints defined in
librustc_lint/builtin.rsinto two new modules:unusedfor theUNUSED_*lints andbad_stylefor the various style related lints as suggested in #22206.builtin.rscould probably get broken up more but this is a start.