fix linting error
This commit is contained in:
parent
978bdd643f
commit
d3257627d7
2 changed files with 4 additions and 2 deletions
File diff suppressed because one or more lines are too long
|
|
@ -259,7 +259,9 @@ export async function addFingerprints(
|
||||||
sourceRoot: string,
|
sourceRoot: string,
|
||||||
logger: Logger,
|
logger: Logger,
|
||||||
): Promise<SarifFile> {
|
): Promise<SarifFile> {
|
||||||
logger.info("Adding fingerprints to SARIF file. For more information, see https://docs.github.com/en/enterprise-cloud@latest/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#providing-data-to-track-code-scanning-alerts-across-runs");
|
logger.info(
|
||||||
|
"Adding fingerprints to SARIF file. For more information, see https://docs.github.com/en/enterprise-cloud@latest/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning#providing-data-to-track-code-scanning-alerts-across-runs",
|
||||||
|
);
|
||||||
// Gather together results for the same file and construct
|
// Gather together results for the same file and construct
|
||||||
// callbacks to accept hashes for that file and update the location
|
// callbacks to accept hashes for that file and update the location
|
||||||
const callbacksByFile: { [filename: string]: hashCallback[] } = {};
|
const callbacksByFile: { [filename: string]: hashCallback[] } = {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue