diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-23 04:12:11 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-23 04:12:11 +0800 |
| commit | 7ef6183f3a90d97bfae1af49658c089c04c3f715 (patch) | |
| tree | 59ab7ebd17883cd418d5b94b79a79fb497d52f34 /mingling_cli/src/linter.rs | |
| parent | df2e43f20407ada1f9561a600c6a2987301268b9 (diff) | |
chore: remove deprecated `cmd_mlint_install` module
Diffstat (limited to 'mingling_cli/src/linter.rs')
| -rw-r--r-- | mingling_cli/src/linter.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mingling_cli/src/linter.rs b/mingling_cli/src/linter.rs index 5d20900..859ffc5 100644 --- a/mingling_cli/src/linter.rs +++ b/mingling_cli/src/linter.rs @@ -4,15 +4,11 @@ use mingling::{ }; use crate::{ - linter::{ - cmd_mlint::{CMDLint, EntryLint}, - cmd_mlint_install::CMDLintInstall, - }, + linter::cmd_mlint::{CMDLint, EntryLint}, metadata::setup::ResUsingJson, }; pub mod cmd_mlint; -pub mod cmd_mlint_install; pub mod mlint_attr; pub mod mlint_report; @@ -24,7 +20,6 @@ pub fn mingling_linter_setup(program: &mut Program<crate::ThisProgram>) { #[program_setup] pub fn mingling_linter_command_setup(program: &mut Program<crate::ThisProgram>) { program.with_dispatcher(CMDLint); - program.with_dispatcher(CMDLintInstall); program.with_dispatcher(CMDLinterSupportRustAnalyzer); program.with_dispatcher(CMDLinterSupportRustAnalyzerWithClippy); program.with_dispatcher(CMDLinterSupportRustAnalyzerWithCheck); |
