isMachineReadable reports whether the output format writes a structured document to stdout that must not be interleaved with progress text. Both json and sarif move [ocr] progress lines off stdout and suppress the trace summary, which is already carried inside the document.
(outputFormat string)
| 289 | // json and sarif move [ocr] progress lines off stdout and suppress the trace |
| 290 | // summary, which is already carried inside the document. |
| 291 | func isMachineReadable(outputFormat string) bool { |
| 292 | return outputFormat == "json" || outputFormat == "sarif" |
| 293 | } |
| 294 | |
| 295 | // newQuietHandle routes [ocr] progress lines away from stdout so they cannot |
| 296 | // corrupt a structured output document. What it does depends on why stdout |
no outgoing calls
no test coverage detected