File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -36,18 +36,22 @@ export interface TableOptions {
36
36
export const TableFlags = {
37
37
csv : Flags . boolean ( {
38
38
description : 'output is csv format [alias: --output=csv]' ,
39
+ helpGroup : 'OUTPUT' ,
39
40
} ) ,
40
41
extended : Flags . boolean ( {
41
42
description : 'show extra columns' ,
43
+ helpGroup : 'OUTPUT' ,
42
44
} ) ,
43
45
'no-header' : Flags . boolean ( {
44
46
description : 'hide table header from output' ,
45
47
exclusive : [ 'csv' ] ,
48
+ helpGroup : 'OUTPUT' ,
46
49
} ) ,
47
50
output : Flags . string ( {
48
51
description : 'output in a more machine friendly format' ,
49
52
exclusive : [ 'csv' ] ,
50
53
options : [ 'csv' , 'json' ] ,
54
+ helpGroup : 'OUTPUT' ,
51
55
} ) ,
52
56
sort : Flags . string ( {
53
57
description : "property to sort by (prepend '-' for descending)" ,
You can’t perform that action at this time.
0 commit comments