Skip to content

Commit d325762

Browse files
committed
fix linting error
1 parent 978bdd6 commit d325762

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

lib/fingerprints.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/fingerprints.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ export async function addFingerprints(
259259
sourceRoot: string,
260260
logger: Logger,
261261
): Promise<SarifFile> {
262-
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");
262+
logger.info(
263+
"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",
264+
);
263265
// Gather together results for the same file and construct
264266
// callbacks to accept hashes for that file and update the location
265267
const callbacksByFile: { [filename: string]: hashCallback[] } = {};

0 commit comments

Comments
 (0)