(options: {
explicit?: FilePathRenderStyle;
configured?: FilePathRenderStyle;
outputStyle?: OutputStyle;
})
| 6 | } |
| 7 | |
| 8 | export function resolveFilePathRenderStyle(options: { |
| 9 | explicit?: FilePathRenderStyle; |
| 10 | configured?: FilePathRenderStyle; |
| 11 | outputStyle?: OutputStyle; |
| 12 | }): FilePathRenderStyle { |
| 13 | return ( |
| 14 | options.explicit ?? options.configured ?? (options.outputStyle === 'minimal' ? 'tree' : 'list') |
| 15 | ); |
| 16 | } |
no outgoing calls
no test coverage detected