in src/utils/reportUtils.js [196:205]
function printConfig(
stream: WriteStream,
command: string,
config: Object,
): void {
printHeader(stream, `Report of ${command} command`);
printReportTime(stream);
stream.write(`Config: ${JSON.stringify(config, null, 2)}` + EOL);
stream.write(EOL + EOL);
}