You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was made possible by the removal of plugin support, which
simplified lint store creation.
This simplifies the places in rustc and rustdoc that call
`describe_lints`, which are early on. The lint store is now built before
those places, so they don't have to create their own lint store for
temporary use, they can just use the main one.
Note: there are two clippy test changes. clippy loads the `clippy.toml`
file into the source map during lint registration, and this now happens
earlier than it used to, before the Rust source code is loaded. This
exposes some latent bugs in clippy where it assumes invalid things about
spans and source map offsets. These are in the process of being fixed
elsewhere, as described in #117649.
0 commit comments