This commit is contained in:
Ezio Li 2022-11-23 01:50:31 +00:00 коммит произвёл GitHub
Родитель d06a428f77
Коммит d56d34bb89
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -122,7 +122,7 @@ export class DebuggerEndpointHelper {
const requestOptions: https.RequestOptions = {};
if (isSecure && targetAddressIsLoopback) {
requestOptions.rejectUnauthorized = false;
requestOptions.rejectUnauthorized = false; // lgtm [js/disabling-certificate-validation]
}
const request = driver.get(url, requestOptions, response => {

Просмотреть файл

@ -17,7 +17,7 @@ const through = require("through2");
* @param {string} message The error message to display
*/
function logError(pluginName, file, message) {
const sourcePath = path.relative(__dirname, file.path).replace("../", "");
const sourcePath = path.relative(__dirname, file.path).replace("../", ""); // lgtm [js/incomplete-sanitization]
log(`[${colors.cyan(pluginName)}] ${colors.red("error")} ${sourcePath}: ${message}`);
}