chore: unblock pre-commit lint hook

This commit is contained in:
Linus Rath
2026-05-13 00:34:35 +02:00
parent ea424cad7e
commit b46a1a69e8
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -5,6 +5,7 @@ export interface ParsedWebcal {
}
function stripControlChars(value: string): string {
// eslint-disable-next-line no-control-regex
return value.replace(/[\u0000-\u001F\u007F]/g, "").trim();
}