Fix linitng issues.

This commit is contained in:
Alex Eyers-Taylor
2025-10-10 13:06:10 +01:00
parent f030ca35d0
commit 5a8e345008
8 changed files with 37 additions and 22 deletions
+3 -1
View File
@@ -93637,7 +93637,9 @@ async function setupDiffInformedQueryRun(logger) {
);
return void 0;
}
const fileCount = new Set(diffRanges.filter((r) => r.path).map((r) => r.path)).size;
const fileCount = new Set(
diffRanges.filter((r) => r.path).map((r) => r.path)
).size;
logger.info(
`Using precomputed diff ranges (${diffRanges.length} ranges across ${fileCount} files).`
);
+5 -1
View File
@@ -90986,7 +90986,11 @@ async function run() {
logger
});
await checkInstallPython311(config.languages, codeql);
prDiffChangedFiles = await computeAndPersistDiffRanges(codeql, features, logger);
prDiffChangedFiles = await computeAndPersistDiffRanges(
codeql,
features,
logger
);
} catch (unwrappedError) {
const error2 = wrapError(unwrappedError);
core13.setFailed(error2.message);