about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbinarycat <binarycat@envs.net>2025-07-24 19:16:15 -0500
committerbinarycat <binarycat@envs.net>2025-07-25 11:41:53 -0500
commitb96f238308aa892825d6d75e359232e99f61b4a4 (patch)
tree41af0cc840f50d5333f8d597ffa14b5e1ca08cca
parenta955f1cd09a027363729ceed919952d09f76f28e (diff)
downloadrust-b96f238308aa892825d6d75e359232e99f61b4a4.tar.gz
rust-b96f238308aa892825d6d75e359232e99f61b4a4.zip
rename ext_tool_checks to extra_checks and use mod.rs
this makes the triagebot pings for this module simpler
-rw-r--r--src/tools/tidy/src/extra_checks/mod.rs (renamed from src/tools/tidy/src/ext_tool_checks.rs)0
-rw-r--r--src/tools/tidy/src/extra_checks/rustdoc_js.rs (renamed from src/tools/tidy/src/ext_tool_checks/rustdoc_js.rs)0
-rw-r--r--src/tools/tidy/src/lib.rs2
-rw-r--r--src/tools/tidy/src/main.rs2
-rw-r--r--triagebot.toml2
5 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/tidy/src/ext_tool_checks.rs b/src/tools/tidy/src/extra_checks/mod.rs
index 8121eb057db..8121eb057db 100644
--- a/src/tools/tidy/src/ext_tool_checks.rs
+++ b/src/tools/tidy/src/extra_checks/mod.rs
diff --git a/src/tools/tidy/src/ext_tool_checks/rustdoc_js.rs b/src/tools/tidy/src/extra_checks/rustdoc_js.rs
index 7708b128e23..7708b128e23 100644
--- a/src/tools/tidy/src/ext_tool_checks/rustdoc_js.rs
+++ b/src/tools/tidy/src/extra_checks/rustdoc_js.rs
diff --git a/src/tools/tidy/src/lib.rs b/src/tools/tidy/src/lib.rs
index 5f6796a9150..4f9fb308a86 100644
--- a/src/tools/tidy/src/lib.rs
+++ b/src/tools/tidy/src/lib.rs
@@ -165,8 +165,8 @@ pub mod debug_artifacts;
 pub mod deps;
 pub mod edition;
 pub mod error_codes;
-pub mod ext_tool_checks;
 pub mod extdeps;
+pub mod extra_checks;
 pub mod features;
 pub mod filenames;
 pub mod fluent_alphabetical;
diff --git a/src/tools/tidy/src/main.rs b/src/tools/tidy/src/main.rs
index 11ee2ae688d..794b0addee3 100644
--- a/src/tools/tidy/src/main.rs
+++ b/src/tools/tidy/src/main.rs
@@ -177,7 +177,7 @@ fn main() {
         check!(unstable_book, &src_path, collected);
 
         check!(
-            ext_tool_checks,
+            extra_checks,
             &root_path,
             &output_directory,
             &ci_info,
diff --git a/triagebot.toml b/triagebot.toml
index 5b522a6617c..f9cd9a49c5a 100644
--- a/triagebot.toml
+++ b/triagebot.toml
@@ -1096,7 +1096,7 @@ cc = ["@jieyouxu"]
 message = "The list of allowed third-party dependencies may have been modified! You must ensure that any new dependencies have compatible licenses before merging."
 cc = ["@davidtwco", "@wesleywiser"]
 
-[mentions."src/tools/tidy/src/ext_tool_checks.rs"]
+[mentions."src/tools/tidy/src/extra_checks"]
 message = "`tidy` extra checks were modified."
 cc = ["@lolbinarycat"]