Skip to content

Commit 911cb69

Browse files
authored
Move table flags into OUTPUT group (#5638)
1 parent ab377a4 commit 911cb69

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ironfish-cli/src/ui/table.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,22 @@ export interface TableOptions {
3636
export const TableFlags = {
3737
csv: Flags.boolean({
3838
description: 'output is csv format [alias: --output=csv]',
39+
helpGroup: 'OUTPUT',
3940
}),
4041
extended: Flags.boolean({
4142
description: 'show extra columns',
43+
helpGroup: 'OUTPUT',
4244
}),
4345
'no-header': Flags.boolean({
4446
description: 'hide table header from output',
4547
exclusive: ['csv'],
48+
helpGroup: 'OUTPUT',
4649
}),
4750
output: Flags.string({
4851
description: 'output in a more machine friendly format',
4952
exclusive: ['csv'],
5053
options: ['csv', 'json'],
54+
helpGroup: 'OUTPUT',
5155
}),
5256
sort: Flags.string({
5357
description: "property to sort by (prepend '-' for descending)",

0 commit comments

Comments
 (0)