Skip to content

Commit

Permalink
[cli-common] do not limit length of line for yaml show
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup committed Aug 2, 2024
1 parent ab9cf3e commit f411633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lib/cli-common/src/formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function print_data(
if (format === 'text') {
console.log(data)
} else if (format === 'yaml') {
console.log(YAML.stringify(data).trimEnd())
console.log(YAML.stringify(data, { lineWidth: 0 }).trimEnd())
} else if (format === 'json') {
console.log(JSON.stringify(data).trimEnd())
} else {
Expand Down

0 comments on commit f411633

Please sign in to comment.