MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / resolveFilePathRenderStyle

Function resolveFilePathRenderStyle

src/utils/file-path-render-style.ts:8–16  ·  view source on GitHub ↗
(options: {
  explicit?: FilePathRenderStyle;
  configured?: FilePathRenderStyle;
  outputStyle?: OutputStyle;
})

Source from the content-addressed store, hash-verified

6}
7
8export 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}

Callers 2

createRenderHooksFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected