pub fn create_output_options(
format: Format,
no_color: bool,
verbose: bool,
) -> OutputOptionsExpand description
Creates output options from CLI parameters.
Constructs an OutputOptions struct from the CLI format, color,
and verbosity settings.
§Arguments
format- Output format (text, json, yaml, sarif)no_color- Whether to disable colored outputverbose- Whether to enable verbose output
§Returns
An OutputOptions struct configured with the given settings.