From f0381c8b12ecd5616397b43406f64190d66a4562 Mon Sep 17 00:00:00 2001 From: kakakakakku Date: Mon, 19 May 2025 09:04:31 +0900 Subject: [PATCH] feat(cli.ts): enhance fgm flag to include description and default value for better usability --- src/cli.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index fd07a90..215c975 100755 --- a/src/cli.ts +++ b/src/cli.ts @@ -19,7 +19,11 @@ cli( name: 'opencommit', commands: [configCommand, hookCommand, commitlintConfigCommand], flags: { - fgm: Boolean, + fgm: { + type: Boolean, + description: 'Use full GitMoji specification', + default: false + }, context: { type: String, alias: 'c',