We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab968d5 commit 53f22b6Copy full SHA for 53f22b6
lib/commands.js
@@ -29,7 +29,10 @@ function help(commands) {
29
if (after.length > 0) after = "("+after.join("; ")+")";
30
else after = "";
31
32
- indent_output(2, '--' + option.name, option.description + ' ' + after);
+ var optname = '--';
33
+ if (typeof option.defaults === 'boolean') optname += '[no-]';
34
+ optname += option.name;
35
+ indent_output(2, optname, option.description + ' ' + after);
36
});
37
console.log('');
38
0 commit comments