renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
31 lines (30 loc) • 1.91 kB
JavaScript
import { hiddenUnicodeCharactersRegex, toUnicodeEscape } from "./regex.js";
import { logger } from "../logger/index.js";
//#region lib/util/unicode.ts
function isBinaryContent(content) {
const sampleSize = Math.min(content.length, 8192);
for (let i = 0; i < sampleSize; i++) if (content[i] === 0) return true;
return false;
}
function logWarningIfUnicodeHiddenCharactersInPackageFile(file, content) {
const buffer = Buffer.isBuffer(content) ? content : Buffer.from(content);
const hiddenCharacters = buffer.toString("utf8").match(hiddenUnicodeCharactersRegex);
if (isBinaryContent(buffer) && hiddenCharacters) {
logger.trace({
file,
hiddenCharacters: toUnicodeEscape(hiddenCharacters.join(""))
}, `Hidden Unicode characters discovered in file \`${file}\`, but not logging higher than TRACE as it appears to be a binary file`);
return;
}
if (hiddenCharacters) if (hiddenCharacters.length === 1 && hiddenCharacters[0] === "") logger.once.trace({
file,
hiddenCharacters: toUnicodeEscape(hiddenCharacters.join(""))
}, `Hidden Byte Order Mark (BOM) Unicode characters has been discovered in the file \`${file}\`. This is likely safe, if you are using Microsoft Windows, but please confirm that they are intended to be there, as they could be an attempt to "smuggle" text into your codebase, or used to confuse tools like Renovate or Large Language Models (LLMs)`);
else logger.once.warn({
file,
hiddenCharacters: toUnicodeEscape(hiddenCharacters.join(""))
}, `Hidden Unicode characters have been discovered in file(s) in your repository. See your Renovate logs for more details. Please confirm that they are intended to be there, as they could be an attempt to "smuggle" text into your codebase, or used to confuse tools like Renovate or Large Language Models (LLMs)`);
}
//#endregion
export { logWarningIfUnicodeHiddenCharactersInPackageFile };
//# sourceMappingURL=unicode.js.map