From b9d7b8736062509f1f7a5c02943398975ea7ee53 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 21 Jul 2026 16:56:39 +0800 Subject: feat(lint): add non_mingling_naming_style lint with auto-fix suggestions Support file-level lint checks via `check_file` in lint registry template. --- mingling_cli/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_cli/build.rs') diff --git a/mingling_cli/build.rs b/mingling_cli/build.rs index b74d8a0..ec4f208 100644 --- a/mingling_cli/build.rs +++ b/mingling_cli/build.rs @@ -4,7 +4,7 @@ pub mod pre; fn main() { // Perform path analysis and build type mapping table - analyze_and_build_type_mapping().unwrap(); + analyze_and_build_type_mapping().ok(); // Generate lint registry pre::gen_mod_file().unwrap(); -- cgit