about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/internal.rs
diff options
context:
space:
mode:
authorblyxyas <blyxyas@gmail.com>2024-09-07 12:13:03 +0200
committerblyxyas <blyxyas@gmail.com>2024-10-19 16:20:51 +0200
commit637d5cc56fcc11afadd4ffaefa237c11f47cdfee (patch)
tree7a7aac9650257f6419d7208b78221db9f74809b6 /compiler/rustc_lint/src/internal.rs
parent71b4d108c7e71c15c0f61d737ebdc0e1cf559d3c (diff)
downloadrust-637d5cc56fcc11afadd4ffaefa237c11f47cdfee.tar.gz
rust-637d5cc56fcc11afadd4ffaefa237c11f47cdfee.zip
Remove module passes filtering
Diffstat (limited to 'compiler/rustc_lint/src/internal.rs')
-rw-r--r--compiler/rustc_lint/src/internal.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_lint/src/internal.rs b/compiler/rustc_lint/src/internal.rs
index 0f4f58efd8e..11e9e933dd9 100644
--- a/compiler/rustc_lint/src/internal.rs
+++ b/compiler/rustc_lint/src/internal.rs
@@ -430,7 +430,7 @@ declare_tool_lint! {
     Deny,
     "prevent creation of diagnostics which cannot be translated",
     report_in_external_macro: true,
-    [loadbearing: true]
+    eval_always: true
 }
 
 declare_tool_lint! {
@@ -444,7 +444,7 @@ declare_tool_lint! {
     Deny,
     "prevent diagnostic creation outside of `Diagnostic`/`Subdiagnostic`/`LintDiagnostic` impls",
     report_in_external_macro: true,
-    [loadbearing: true]
+    eval_always: true
 }
 
 declare_lint_pass!(Diagnostics => [UNTRANSLATABLE_DIAGNOSTIC, DIAGNOSTIC_OUTSIDE_OF_IMPL]);