//! Output formatting utilities
#![allow(dead_code)]usecrate::cli::OutputFormat;/// Determine the effective output format based on context
pubfneffective_format(format: OutputFormat, is_list:bool)-> OutputFormat{match format {OutputFormat::Auto =>{if is_list {OutputFormat::Tsv
}else{OutputFormat::Yaml
}}
other => other,}}