From 4d50904f282f68bca6d0c1facdbd4776a9ca41a0 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 4 Aug 2026 20:33:11 +0800 Subject: docs: add help text for CLI commands and descriptions Add help text for global flags, commands, and subcommands in help.txt. Add metadata descriptions for linter and metadata commands. --- mingling_cli/help/help.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'mingling_cli/help') diff --git a/mingling_cli/help/help.txt b/mingling_cli/help/help.txt index 85a4fb7..d5073e6 100644 --- a/mingling_cli/help/help.txt +++ b/mingling_cli/help/help.txt @@ -1,3 +1,30 @@ USAGE: mling [GLOBAL_FLAGS] [COMMAND] [ARGS...] GLOBAL_FLAGS: + --all-features Enable all features + --features List of features to enable + -h, --help Show help messages + --manifest-path Custom path to Cargo.toml + --message-format Output message format + --no-default-features Disable default features + --no-deps Do not include dependencies in metadata + +COMMANDS: + metadata Check your workspace metadata using 'cargo metadata' + + LINTER: + lint Mingling Linter + ra-lint Run `mling lint` and output the results + ra-lint-check Run `mling lint` and `cargo check`, and output the combined results + ra-lint-clippy Run `mling lint` and `cargo clippy`, and output the combined results + explain [NOT_IMPL] Explain the meaning of the specified Lint + + PROJECT MANAGE: + proj-new [NOT_IMPL] Create a project + proj-init [NOT_IMPL] Initialize a project + + PACKAGE MANAGE: + install [NOT_IMPL] Install the project to the Mingling package list + package-show [NOT_IMPL] Show locally installed packages + package-enable [NOT_IMPL] Enable the specified package + package-disable [NOT_IMPL] Disable the specified package -- cgit