add QL as another supported language

This commit is contained in:
erik-krogh
2022-08-10 19:43:31 +02:00
parent 7c9e85e249
commit 77a8d2d10c
6 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.includeAndExcludeAnalysisPaths = exports.printPathFiltersWarning = exports.legalWindowsPathCharactersRegex = void 0;
const path = __importStar(require("path"));
function isInterpretedLanguage(language) {
return (language === "javascript" || language === "python" || language === "ruby");
return (language === "javascript" || language === "python" || language === "ruby" || language === "ql");
}
// Matches a string containing only characters that are legal to include in paths on windows.
exports.legalWindowsPathCharactersRegex = /^[^<>:"|?]*$/;