From 9a8523487521a38598130492b67894c80d257d22 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Fri, 8 May 2026 17:55:10 +0100 Subject: [PATCH] Add JSDoc for `getRawLanguagesNoAutodetect` --- src/config-utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config-utils.ts b/src/config-utils.ts index 0b0701007..860f4651f 100644 --- a/src/config-utils.ts +++ b/src/config-utils.ts @@ -407,6 +407,7 @@ export async function getLanguages( return languages; } +/** Parses the `languages` input into a list of languages without checking if they are supported by CodeQL. */ export function getRawLanguagesNoAutodetect( languagesInput: string | undefined, ): string[] {