From b342c3dd608810850042c63e3fb31986105c349e Mon Sep 17 00:00:00 2001 From: Mark Brockhoff Date: Thu, 14 Jul 2022 11:28:29 +0200 Subject: [PATCH] refactor: Remove empty default value for parameter --postfixModels --- bin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/index.js b/bin/index.js index c773190d..367228a7 100755 --- a/bin/index.js +++ b/bin/index.js @@ -23,7 +23,7 @@ const params = program .option('--indent ', 'Indentation options [4, 2, tabs]', '4') .option('--postfix ', 'Deprecated: Use --postfixServices instead. Service name postfix', 'Service') .option('--postfixServices ', 'Service name postfix', 'Service') - .option('--postfixModels ', 'Model name postfix', '') + .option('--postfixModels ', 'Model name postfix') .option('--request ', 'Path to custom request file') .parse(process.argv) .opts();