chore: try a fix for clang-tidy on Windows

This commit is contained in:
David Sanders
2025-12-04 14:48:26 -08:00
parent ac3f7f8368
commit e53c8769d8

View File

@@ -120,6 +120,7 @@ async function runClangTidy (
const cmd = path.resolve(LLVM_BIN, 'clang-tidy');
const args = [`-p=${outDir}`];
if (PLATFORM === 'win32') args.push('--extra-arg-before=--driver-mode=cl');
if (!process.env.CI) args.push('--use-color');
if (fix) args.push('--fix');
if (checks) args.push(`--checks=${checks}`);