diff options
| author | David Wood <david.wood@huawei.com> | 2022-06-10 15:50:06 +0100 |
|---|---|---|
| committer | David Wood <david.wood@huawei.com> | 2022-06-10 15:50:06 +0100 |
| commit | 5ba81faba632883ee69be0d216959a5ef3bba030 (patch) | |
| tree | 8d0940ffb1e0dc97e79a692625e16e617a8ff555 /compiler/rustc_feature | |
| parent | 52ee2a2738c957ca6fd54e97b4e090a266ba96ba (diff) | |
| download | rust-5ba81faba632883ee69be0d216959a5ef3bba030.tar.gz rust-5ba81faba632883ee69be0d216959a5ef3bba030.zip | |
lint: add diagnostic translation migration lints
Introduce allow-by-default lints for checking whether diagnostics are written in `SessionDiagnostic`/`AddSubdiagnostic` impls and whether diagnostics are translatable. These lints can be denied for modules once they are fully migrated to impls and translation. Signed-off-by: David Wood <david.wood@huawei.com>
Diffstat (limited to 'compiler/rustc_feature')
| -rw-r--r-- | compiler/rustc_feature/src/builtin_attrs.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/builtin_attrs.rs b/compiler/rustc_feature/src/builtin_attrs.rs index 5eb2be97f8b..34c53597dde 100644 --- a/compiler/rustc_feature/src/builtin_attrs.rs +++ b/compiler/rustc_feature/src/builtin_attrs.rs @@ -615,6 +615,9 @@ pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[ // Used by the `rustc::potential_query_instability` lint to warn methods which // might not be stable during incremental compilation. rustc_attr!(rustc_lint_query_instability, Normal, template!(Word), WarnFollowing, INTERNAL_UNSTABLE), + // Used by the `rustc::untranslatable_diagnostic` and `rustc::diagnostic_outside_of_impl` lints + // to assist in changes to diagnostic APIs. + rustc_attr!(rustc_lint_diagnostics, Normal, template!(Word), WarnFollowing, INTERNAL_UNSTABLE), // ========================================================================== // Internal attributes, Const related: |
