Skip to content

Commit 892ff9e

Browse files
committed
Fix linting errors
1 parent edfef27 commit 892ff9e

File tree

5 files changed

+9
-21
lines changed

5 files changed

+9
-21
lines changed

lib/doc-url.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/docs-urls.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

lib/docs-urls.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/autobuild.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export async function determineAutobuildLanguages(
103103
.join(
104104
" and ",
105105
)}, you must replace the autobuild step of your workflow with custom build steps. ` +
106-
`See ${DocUrl.SPECIFY_BUILD_STEPS_MANUALLY} for more information.`
106+
`See ${DocUrl.SPECIFY_BUILD_STEPS_MANUALLY} for more information.`,
107107
);
108108
}
109109

src/doc-url.ts

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,10 @@
33
*/
44

55
export enum DocUrl {
6-
ASSIGNING_PERMISSIONS_TO_JOBS =
7-
"https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs",
8-
AUTOMATIC_BUILD_FAILED =
9-
"https://docs.github.com/en/code-security/code-scanning/troubleshooting-code-scanning/automatic-build-failed",
10-
DEFINE_ENV_VARIABLES =
11-
"https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow",
12-
SCANNING_ON_PUSH =
13-
"https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#scanning-on-push",
14-
SPECIFY_BUILD_STEPS_MANUALLY =
15-
"https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#about-specifying-build-steps-manually",
16-
TRACK_CODE_SCANNING_ALERTS_ACROSS_RUNS =
17-
"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"
18-
}
6+
ASSIGNING_PERMISSIONS_TO_JOBS = "https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs",
7+
AUTOMATIC_BUILD_FAILED = "https://docs.github.com/en/code-security/code-scanning/troubleshooting-code-scanning/automatic-build-failed",
8+
DEFINE_ENV_VARIABLES = "https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow",
9+
SCANNING_ON_PUSH = "https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#scanning-on-push",
10+
SPECIFY_BUILD_STEPS_MANUALLY = "https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#about-specifying-build-steps-manually",
11+
TRACK_CODE_SCANNING_ALERTS_ACROSS_RUNS = "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",
12+
}

0 commit comments

Comments
 (0)