From 31dd2cf8e862cd71192869784d3a84849edba636 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 6 Aug 2026 17:02:36 +0800 Subject: feat(cli): implement `explain` command and add JSON structural rendering Add a new `explain ` command that queries the embedded lint registry (generated by `build.rs`) and displays detailed information about a specifoic lint, including its name, title, summary, active-on target, default setting, and author. Enable the `structural_renderer` feature and add `serde`/`serde_json` dependencies to support JSON output rendering for command results. --- mingling_cli/Cargo.lock | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling_cli/Cargo.lock') diff --git a/mingling_cli/Cargo.lock b/mingling_cli/Cargo.lock index 8f16e57..2a6e744 100644 --- a/mingling_cli/Cargo.lock +++ b/mingling_cli/Cargo.lock @@ -277,6 +277,7 @@ dependencies = [ "arg-picker", "mingling_core", "mingling_macros", + "serde", ] [[package]] @@ -304,6 +305,8 @@ dependencies = [ "just_template", "might_be_async", "mingling_pathf", + "serde", + "serde_json", ] [[package]] -- cgit