boolStr renders booleans as "true"/"" so empty TSV cells stay visually quiet and don't clutter the grep'able stream.
(b bool)
| 449 | // boolStr renders booleans as "true"/"" so empty TSV cells stay visually |
| 450 | // quiet and don't clutter the grep'able stream. |
| 451 | func boolStr(b bool) string { |
| 452 | if b { |
| 453 | return "true" |
| 454 | } |
| 455 | return "" |
| 456 | } |
| 457 | |
| 458 | // taskListRow is the row shape that feeds table, JSON, and TSV rendering |
| 459 | // for `flow list tasks`. Field order matters for JSON output stability. |
no outgoing calls
no test coverage detected